Fix Redundance Reference

This commit is contained in:
Thanakarn Klangkasame
2025-10-03 10:33:55 +07:00
parent 33470d5fd4
commit d266463c9f
20 changed files with 440 additions and 29 deletions

View File

@@ -1,6 +1,41 @@
using AMREZ.EOP.Contracts.DTOs.Integrations.SCB.Common;
namespace AMREZ.EOP.Contracts.DTOs.Integrations.SCB.SlipVerification;
public class SlipVerificationEnvelope
public sealed class SlipVerificationEnvelope
{
public SCBStatus? Status { get; set; }
public SlipVerificationData? Data { get; set; }
}
public sealed class SlipVerificationData
{
public string? TransRef { get; set; }
public string? SendingBank { get; set; }
public string? ReceivingBank { get; set; }
public string? TransDate { get; set; } // yyyyMMdd
public string? TransTime { get; set; } // HH:mm:ss
public SCBParty? Sender { get; set; }
public SCBParty? Receiver { get; set; }
public string? Amount { get; set; }
public string? PaidLocalAmount { get; set; }
public string? PaidLocalCurrency { get; set; } // "764"
public string? CountryCode { get; set; } // "TH"
public string? Ref1 { get; set; }
public string? Ref2 { get; set; }
public string? Ref3 { get; set; }
}
public sealed class SCBParty
{
public string? DisplayName { get; set; }
public string? Name { get; set; }
public SCBId? Proxy { get; set; }
public SCBId? Account { get; set; }
}
public sealed class SCBId
{
public string? Type { get; set; }
public string? Value { get; set; }
}