コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the OBWriteDomesticResponse4Data
 /// class.
 /// </summary>
 /// <param name="domesticPaymentId">OB: Unique identification as
 /// assigned by the ASPSP to uniquely identify the domestic payment
 /// resource.</param>
 /// <param name="consentId">OB: Unique identification as assigned by
 /// the ASPSP to uniquely identify the consent resource.</param>
 /// <param name="creationDateTime">Date and time at which the message
 /// was created.All dates in the JSON payloads are represented in ISO
 /// 8601 date-time format.
 /// All date-time fields in responses must include the timezone. An
 /// example is below:
 /// 2017-04-05T10:43:07+00:00</param>
 /// <param name="status">Specifies the status of the payment
 /// information group. Possible values include:
 /// 'AcceptedCreditSettlementCompleted', 'AcceptedSettlementCompleted',
 /// 'AcceptedSettlementInProcess', 'AcceptedWithoutPosting', 'Pending',
 /// 'Rejected'</param>
 /// <param name="statusUpdateDateTime">Date and time at which the
 /// resource status was updated.All dates in the JSON payloads are
 /// represented in ISO 8601 date-time format.
 /// All date-time fields in responses must include the timezone. An
 /// example is below:
 /// 2017-04-05T10:43:07+00:00</param>
 /// <param name="initiation">The Initiation payload is sent by the
 /// initiating party to the ASPSP. It is used to request movement of
 /// funds from the debtor account to a creditor for a single domestic
 /// payment.</param>
 /// <param name="expectedExecutionDateTime">Expected execution date and
 /// time for the payment resource.All dates in the JSON payloads are
 /// represented in ISO 8601 date-time format.
 /// All date-time fields in responses must include the timezone. An
 /// example is below:
 /// 2017-04-05T10:43:07+00:00</param>
 /// <param name="expectedSettlementDateTime">Expected settlement date
 /// and time for the payment resource.All dates in the JSON payloads
 /// are represented in ISO 8601 date-time format.
 /// All date-time fields in responses must include the timezone. An
 /// example is below:
 /// 2017-04-05T10:43:07+00:00</param>
 /// <param name="refund">Unambiguous identification of the refund
 /// account to which a refund will be made as a result of the
 /// transaction.</param>
 /// <param name="multiAuthorisation">The multiple authorisation flow
 /// response from the ASPSP.</param>
 public OBWriteDomesticResponse4Data(string domesticPaymentId, string consentId, System.DateTimeOffset creationDateTime, OBWriteDomesticResponse4DataStatusEnum status, System.DateTimeOffset statusUpdateDateTime, OBWriteDomesticResponse4DataInitiation initiation, System.DateTimeOffset?expectedExecutionDateTime = default(System.DateTimeOffset?), System.DateTimeOffset?expectedSettlementDateTime = default(System.DateTimeOffset?), OBWriteDomesticResponse4DataRefund refund = default(OBWriteDomesticResponse4DataRefund), IList <OBWriteDomesticResponse4DataChargesItem> charges = default(IList <OBWriteDomesticResponse4DataChargesItem>), OBWriteDomesticResponse4DataMultiAuthorisation multiAuthorisation = default(OBWriteDomesticResponse4DataMultiAuthorisation))
 {
     DomesticPaymentId          = domesticPaymentId;
     ConsentId                  = consentId;
     CreationDateTime           = creationDateTime;
     Status                     = status;
     StatusUpdateDateTime       = statusUpdateDateTime;
     ExpectedExecutionDateTime  = expectedExecutionDateTime;
     ExpectedSettlementDateTime = expectedSettlementDateTime;
     Refund                     = refund;
     Charges                    = charges;
     Initiation                 = initiation;
     MultiAuthorisation         = multiAuthorisation;
     CustomInit();
 }
コード例 #2
0
        internal static string ToSerializedValue(this OBWriteDomesticResponse4DataStatusEnum value)
        {
            switch (value)
            {
            case OBWriteDomesticResponse4DataStatusEnum.AcceptedCreditSettlementCompleted:
                return("AcceptedCreditSettlementCompleted");

            case OBWriteDomesticResponse4DataStatusEnum.AcceptedSettlementCompleted:
                return("AcceptedSettlementCompleted");

            case OBWriteDomesticResponse4DataStatusEnum.AcceptedSettlementInProcess:
                return("AcceptedSettlementInProcess");

            case OBWriteDomesticResponse4DataStatusEnum.AcceptedWithoutPosting:
                return("AcceptedWithoutPosting");

            case OBWriteDomesticResponse4DataStatusEnum.Pending:
                return("Pending");

            case OBWriteDomesticResponse4DataStatusEnum.Rejected:
                return("Rejected");
            }
            return(null);
        }