toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final alternateEmail = this.alternateEmail;
  final channelPartnerId = this.channelPartnerId;
  final cloudIdentityId = this.cloudIdentityId;
  final cloudIdentityInfo = this.cloudIdentityInfo;
  final correlationId = this.correlationId;
  final createTime = this.createTime;
  final customerAttestationState = this.customerAttestationState;
  final domain = this.domain;
  final languageCode = this.languageCode;
  final name = this.name;
  final orgDisplayName = this.orgDisplayName;
  final orgPostalAddress = this.orgPostalAddress;
  final primaryContactInfo = this.primaryContactInfo;
  final updateTime = this.updateTime;
  return {
    'alternateEmail': ?alternateEmail,
    'channelPartnerId': ?channelPartnerId,
    'cloudIdentityId': ?cloudIdentityId,
    'cloudIdentityInfo': ?cloudIdentityInfo,
    'correlationId': ?correlationId,
    'createTime': ?createTime,
    'customerAttestationState': ?customerAttestationState,
    'domain': ?domain,
    'languageCode': ?languageCode,
    'name': ?name,
    'orgDisplayName': ?orgDisplayName,
    'orgPostalAddress': ?orgPostalAddress,
    'primaryContactInfo': ?primaryContactInfo,
    'updateTime': ?updateTime,
  };
}