toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (cloudConsoleUri != null) 'cloudConsoleUri': cloudConsoleUri!,
  if (customId != null) 'customId': customId!,
  if (email != null) 'email': email!,
  if (handoverServiceAccount != null)
    'handoverServiceAccount': handoverServiceAccount!,
  if (instances != null) 'instances': instances!,
  if (location != null) 'location': location!,
  if (name != null) 'name': name!,
  if (networks != null) 'networks': networks!,
  if (pod != null) 'pod': pod!,
  if (state != null) 'state': state!,
  if (statusMessage != null) 'statusMessage': statusMessage!,
  if (ticketId != null) 'ticketId': ticketId!,
  if (updateTime != null) 'updateTime': updateTime!,
  if (volumes != null) 'volumes': volumes!,
  if (vpcScEnabled != null) 'vpcScEnabled': vpcScEnabled!,
};