PaymentLinkResponse constructor
const
PaymentLinkResponse({
- required int id,
- String? currency,
- required ClientInfo clientInfo,
- String? referenceId,
- required int amountCents,
- required String state,
- String? description,
- required DateTime createdAt,
- DateTime? expiresAt,
- DateTime? paidAt,
- required String clientUrl,
- required int origin,
- String? merchantStaffTag,
- String? paymentLinkImage,
- required int order,
Implementation
const PaymentLinkResponse({
required this.id,
this.currency,
required this.clientInfo,
this.referenceId,
required this.amountCents,
required this.state,
this.description,
required this.createdAt,
this.expiresAt,
this.paidAt,
required this.clientUrl,
required this.origin,
this.merchantStaffTag,
this.paymentLinkImage,
required this.order,
});