Acid.PuntoPagos.Sdk.Dtos.CheckTransactionRequestDto.CheckTransactionRequestDto C# (CSharp) Метод

CheckTransactionRequestDto() публичный Метод

Create new object for check the result of transacction process
public CheckTransactionRequestDto ( decimal amount, ulong transactionId, string token )
amount decimal Total value of the transaction
transactionId ulong Unique identifier of the client's transaction
token string Unique identifier of the transaction Payment Point
        public CheckTransactionRequestDto(decimal amount, ulong transactionId, string token)
        {
            TransactionId = transactionId;
            Currency = new CurrencyDto(amount);
            Token = token;
        }
CheckTransactionRequestDto