Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the
 /// OBWriteDomesticConsentResponse3Data class.
 /// </summary>
 /// <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 resource
 /// 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 consent resource in
 /// code form. Possible values include: 'Authorised',
 /// 'AwaitingAuthorisation', 'Consumed', '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="cutOffDateTime">Specified cut-off date and time for
 /// the payment consent.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="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="authorisation">The authorisation type request from the
 /// TPP.</param>
 /// <param name="sCASupportData">Supporting Data provided by TPP, when
 /// requesting SCA Exemption.</param>
 public OBWriteDomesticConsentResponse3Data(string consentId, System.DateTimeOffset creationDateTime, OBWriteDomesticConsentResponse3DataStatusEnum status, System.DateTimeOffset statusUpdateDateTime, OBWriteDomesticConsentResponse3DataInitiation initiation, System.DateTimeOffset?cutOffDateTime = default(System.DateTimeOffset?), System.DateTimeOffset?expectedExecutionDateTime = default(System.DateTimeOffset?), System.DateTimeOffset?expectedSettlementDateTime = default(System.DateTimeOffset?), IList <OBWriteDomesticConsentResponse3DataChargesItem> charges = default(IList <OBWriteDomesticConsentResponse3DataChargesItem>), OBWriteDomesticConsentResponse3DataAuthorisation authorisation = default(OBWriteDomesticConsentResponse3DataAuthorisation), OBWriteDomesticConsentResponse3DataSCASupportData sCASupportData = default(OBWriteDomesticConsentResponse3DataSCASupportData))
 {
     ConsentId                  = consentId;
     CreationDateTime           = creationDateTime;
     Status                     = status;
     StatusUpdateDateTime       = statusUpdateDateTime;
     CutOffDateTime             = cutOffDateTime;
     ExpectedExecutionDateTime  = expectedExecutionDateTime;
     ExpectedSettlementDateTime = expectedSettlementDateTime;
     Charges                    = charges;
     Initiation                 = initiation;
     Authorisation              = authorisation;
     SCASupportData             = sCASupportData;
     CustomInit();
 }
Esempio n. 2
0
        internal static string ToSerializedValue(this OBWriteDomesticConsentResponse3DataStatusEnum value)
        {
            switch (value)
            {
            case OBWriteDomesticConsentResponse3DataStatusEnum.Authorised:
                return("Authorised");

            case OBWriteDomesticConsentResponse3DataStatusEnum.AwaitingAuthorisation:
                return("AwaitingAuthorisation");

            case OBWriteDomesticConsentResponse3DataStatusEnum.Consumed:
                return("Consumed");

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