toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authorizationType = this.authorizationType;
  final clientId = this.clientId;
  final dataRefreshType = this.dataRefreshType;
  final dataSourceId = this.dataSourceId;
  final defaultDataRefreshWindowDays = this.defaultDataRefreshWindowDays;
  final defaultSchedule = this.defaultSchedule;
  final description = this.description;
  final displayName = this.displayName;
  final helpUrl = this.helpUrl;
  final manualRunsDisabled = this.manualRunsDisabled;
  final minimumScheduleInterval = this.minimumScheduleInterval;
  final name = this.name;
  final parameters = this.parameters;
  final scopes = this.scopes;
  final supportsCustomSchedule = this.supportsCustomSchedule;
  final supportsMultipleTransfers = this.supportsMultipleTransfers;
  final transferType = this.transferType;
  final updateDeadlineSeconds = this.updateDeadlineSeconds;
  return {
    'authorizationType': ?authorizationType,
    'clientId': ?clientId,
    'dataRefreshType': ?dataRefreshType,
    'dataSourceId': ?dataSourceId,
    'defaultDataRefreshWindowDays': ?defaultDataRefreshWindowDays,
    'defaultSchedule': ?defaultSchedule,
    'description': ?description,
    'displayName': ?displayName,
    'helpUrl': ?helpUrl,
    'manualRunsDisabled': ?manualRunsDisabled,
    'minimumScheduleInterval': ?minimumScheduleInterval,
    'name': ?name,
    'parameters': ?parameters,
    'scopes': ?scopes,
    'supportsCustomSchedule': ?supportsCustomSchedule,
    'supportsMultipleTransfers': ?supportsMultipleTransfers,
    'transferType': ?transferType,
    'updateDeadlineSeconds': ?updateDeadlineSeconds,
  };
}