toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentId = this.agentId;
  final agentType = this.agentType;
  final deploymentDisplayName = this.deploymentDisplayName;
  final deploymentId = this.deploymentId;
  final displayName = this.displayName;
  final dispositionCode = this.dispositionCode;
  final location = this.location;
  final team = this.team;
  final teams = this.teams;
  final versionDisplayName = this.versionDisplayName;
  final versionId = this.versionId;
  return {
    'agentId': ?agentId,
    'agentType': ?agentType,
    'deploymentDisplayName': ?deploymentDisplayName,
    'deploymentId': ?deploymentId,
    'displayName': ?displayName,
    'dispositionCode': ?dispositionCode,
    'location': ?location,
    'team': ?team,
    'teams': ?teams,
    'versionDisplayName': ?versionDisplayName,
    'versionId': ?versionId,
  };
}