Organization constructor

Organization({
  1. required String id,
  2. required String name,
  3. required String slug,
  4. required String? domain,
  5. required String? logoUrl,
  6. required bool? samlEnabled,
  7. required String? samlEntityId,
  8. required String? samlSsoUrl,
  9. required String? samlCertificate,
  10. required bool? scimEnabled,
  11. required String? scimToken,
  12. required String? scimBaseUrl,
  13. required String? plan,
  14. required String? maxMembers,
  15. required UserMetadata? domains,
  16. required UserMetadata? metadata,
  17. required String? type,
  18. required String? parentTenantId,
  19. required int? rateLimit,
  20. required String? createdAt,
  21. required String? updatedAt,
})

Returns a new Organization instance.

Implementation

Organization({
  required this.id,
  required this.name,
  required this.slug,
  required this.domain,
  required this.logoUrl,
  required this.samlEnabled,
  required this.samlEntityId,
  required this.samlSsoUrl,
  required this.samlCertificate,
  required this.scimEnabled,
  required this.scimToken,
  required this.scimBaseUrl,
  required this.plan,
  required this.maxMembers,
  required this.domains,
  required this.metadata,
  required this.type,
  required this.parentTenantId,
  required this.rateLimit,
  required this.createdAt,
  required this.updatedAt,
});