toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customerId = this.customerId;
  final googleWorkspaceCustomerId = this.googleWorkspaceCustomerId;
  final limit = this.limit;
  final pageToken = this.pageToken;
  final sectionType = this.sectionType;
  return {
    'customerId': ?customerId,
    'googleWorkspaceCustomerId': ?googleWorkspaceCustomerId,
    'limit': ?limit,
    'pageToken': ?pageToken,
    'sectionType': ?sectionType,
  };
}