RazorpayAccountUpdateRequestBody constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayAccountUpdateRequestBody({
  1. Profile? profile,
  2. dynamic phone,
  3. String? type,
  4. String? reference_id,
  5. String? legal_business_name,
  6. String? customer_facing_business_name,
  7. LegalInfo? legal_info,
  8. Apps? apps,
  9. Brand? brand,
  10. String? contact_name,
  11. ContactInfoSupport? contact_info,
  12. IMap? notes,
})

Implementation

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