CreateSAMLConnectionRequest constructor

CreateSAMLConnectionRequest({
  1. required String name,
  2. String? domain,
  3. List<String> domains = const [],
  4. required CreateSAMLConnectionRequestProviderEnum provider,
  5. String? idpEntityId,
  6. String? idpSsoUrl,
  7. String? idpCertificate,
  8. String? idpMetadataUrl,
  9. String? idpMetadata,
  10. String? organizationId,
  11. CreateSAMLConnectionRequestAttributeMapping? attributeMapping,
  12. bool? forceAuthn,
})

Returns a new CreateSAMLConnectionRequest instance.

Implementation

CreateSAMLConnectionRequest({
  required this.name,
  this.domain,
  this.domains = const [],
  required this.provider,
  this.idpEntityId,
  this.idpSsoUrl,
  this.idpCertificate,
  this.idpMetadataUrl,
  this.idpMetadata,
  this.organizationId,
  this.attributeMapping,
  this.forceAuthn,
});