toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authenticationTokenSecretVersion =
      this.authenticationTokenSecretVersion;
  final defaultBranch = this.defaultBranch;
  final sshAuthenticationConfig = this.sshAuthenticationConfig;
  final tokenStatus = this.tokenStatus;
  final url = this.url;
  return {
    'authenticationTokenSecretVersion': ?authenticationTokenSecretVersion,
    'defaultBranch': ?defaultBranch,
    'sshAuthenticationConfig': ?sshAuthenticationConfig,
    'tokenStatus': ?tokenStatus,
    'url': ?url,
  };
}