Input$CreateAnyQRCodeCheckoutInput constructor
Input$CreateAnyQRCodeCheckoutInput({})
Implementation
factory Input$CreateAnyQRCodeCheckoutInput({
required String approve_url,
required String cancel_url,
String? first_name,
String? last_name,
required String merchant_id,
required String phone,
required String qr_code,
}) =>
Input$CreateAnyQRCodeCheckoutInput._({
r'approve_url': approve_url,
r'cancel_url': cancel_url,
if (first_name != null) r'first_name': first_name,
if (last_name != null) r'last_name': last_name,
r'merchant_id': merchant_id,
r'phone': phone,
r'qr_code': qr_code,
});