CapturePaymentAuthPayload constructor
CapturePaymentAuthPayload({})
Implementation
factory CapturePaymentAuthPayload({
/// [Required]
/// The unique payment transaction id provided by merchant
/// string <= 64 characters
required String merchantPaymentId,
required String merchantCaptureId,
/// [Required]
/// Amount the user has to Pay
required Amount amount,
/// [Required]
/// string <= 64 characters
required String userAuthorizationId,
/// Request timestamp(Unix epoch but not Unix millisecond epoch)
int? requestedAt,
/// Description of the Order,
/// to see the link to check how it will show up
/// https://www.paypay.ne.jp/opa/doc/jp/v1.0/files/OPA%20PayPay%E3%82%A2%E3%83%97%E3%83%AA%E3%81%A7%E3%81%AE%E8%A1%A8%E7%A4%BA.pdf#page=4
/// string <= 255 characters
String? orderDescription,
}) = _CapturePaymentAuthPayload;