41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using AMREZ.EOP.Contracts.DTOs.Integrations.SCB.Common;
|
|
|
|
namespace AMREZ.EOP.Contracts.DTOs.Integrations.SCB.SlipVerification;
|
|
|
|
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; }
|
|
} |