toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (attributeMapping != null) 'attributeMapping': attributeMapping!,
  if (groupPrefix != null) 'groupPrefix': groupPrefix!,
  if (groupsAttribute != null) 'groupsAttribute': groupsAttribute!,
  if (identityProviderCertificates != null)
    'identityProviderCertificates': identityProviderCertificates!,
  if (identityProviderId != null) 'identityProviderId': identityProviderId!,
  if (identityProviderSsoUri != null)
    'identityProviderSsoUri': identityProviderSsoUri!,
  if (userAttribute != null) 'userAttribute': userAttribute!,
  if (userPrefix != null) 'userPrefix': userPrefix!,
};