SchemasCommercePayerResponse constructor

SchemasCommercePayerResponse({
  1. required SchemasCommercePayerResponseObjectEnum object,
  2. required String id,
  3. required String instanceId,
  4. String? userId,
  5. required String firstName,
  6. required String lastName,
  7. required String email,
  8. String? organizationId,
  9. String? organizationName,
  10. required String imageUrl,
  11. required int createdAt,
  12. required int updatedAt,
})

Returns a new SchemasCommercePayerResponse instance.

Implementation

SchemasCommercePayerResponse({
  required this.object,
  required this.id,
  required this.instanceId,
  this.userId,
  required this.firstName,
  required this.lastName,
  required this.email,
  this.organizationId,
  this.organizationName,
  required this.imageUrl,
  required this.createdAt,
  required this.updatedAt,
});