RazorpayAccountBaseRequestBody constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayAccountBaseRequestBody(
{ - required String email,
- required Profile profile,
- required dynamic phone,
- required String business_type,
- required String legal_business_name,
- required String contact_name,
- String? type,
- String? reference_id,
- String? customer_facing_business_name,
- LegalInfo? legal_info,
- Apps? apps,
- Brand? brand,
- ContactInfoSupport? contact_info,
- IMap? notes,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayAccountBaseRequestBody({
required String email,
required Profile profile,
required dynamic phone,
required String business_type,
required String legal_business_name,
required String contact_name, // string | number
String? type,
String? reference_id,
String? customer_facing_business_name,
LegalInfo? legal_info,
Apps? apps,
Brand? brand,
ContactInfoSupport? contact_info,
IMap<dynamic>? notes, // IMap<string | number>
}) = _RazorpayAccountBaseRequestBody;