toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final arguments = this.arguments;
  final creationTime = this.creationTime;
  final dataGovernanceType = this.dataGovernanceType;
  final definitionBody = this.definitionBody;
  final description = this.description;
  final determinismLevel = this.determinismLevel;
  final etag = this.etag;
  final externalRuntimeOptions = this.externalRuntimeOptions;
  final importedLibraries = this.importedLibraries;
  final language = this.language;
  final lastModifiedTime = this.lastModifiedTime;
  final pythonOptions = this.pythonOptions;
  final remoteFunctionOptions = this.remoteFunctionOptions;
  final returnTableType = this.returnTableType;
  final returnType = this.returnType;
  final routineReference = this.routineReference;
  final routineType = this.routineType;
  final securityMode = this.securityMode;
  final sparkOptions = this.sparkOptions;
  final strictMode = this.strictMode;
  return {
    'arguments': ?arguments,
    'creationTime': ?creationTime,
    'dataGovernanceType': ?dataGovernanceType,
    'definitionBody': ?definitionBody,
    'description': ?description,
    'determinismLevel': ?determinismLevel,
    'etag': ?etag,
    'externalRuntimeOptions': ?externalRuntimeOptions,
    'importedLibraries': ?importedLibraries,
    'language': ?language,
    'lastModifiedTime': ?lastModifiedTime,
    'pythonOptions': ?pythonOptions,
    'remoteFunctionOptions': ?remoteFunctionOptions,
    'returnTableType': ?returnTableType,
    'returnType': ?returnType,
    'routineReference': ?routineReference,
    'routineType': ?routineType,
    'securityMode': ?securityMode,
    'sparkOptions': ?sparkOptions,
    'strictMode': ?strictMode,
  };
}