toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (customer != null) 'customer': customer!,
  if (name != null) 'name': name!,
  if (oidcSsoInfo != null) 'oidcSsoInfo': oidcSsoInfo!,
  if (rank != null) 'rank': rank!,
  if (samlSsoInfo != null) 'samlSsoInfo': samlSsoInfo!,
  if (signInBehavior != null) 'signInBehavior': signInBehavior!,
  if (ssoMode != null) 'ssoMode': ssoMode!,
  if (targetGroup != null) 'targetGroup': targetGroup!,
  if (targetOrgUnit != null) 'targetOrgUnit': targetOrgUnit!,
};