toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final billingAccount = this.billingAccount;
final cloudIdentityId = this.cloudIdentityId;
final customerName = this.customerName;
final languageCode = this.languageCode;
final pageSize = this.pageSize;
final pageToken = this.pageToken;
final sku = this.sku;
return {
'billingAccount': ?billingAccount,
'cloudIdentityId': ?cloudIdentityId,
'customerName': ?customerName,
'languageCode': ?languageCode,
'pageSize': ?pageSize,
'pageToken': ?pageToken,
'sku': ?sku,
};
}