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 (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!,
    };