toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backupSchedules = this.backupSchedules;
final createTime = this.createTime;
final database = this.database;
final databaseDialect = this.databaseDialect;
final encryptionInfo = this.encryptionInfo;
final encryptionInformation = this.encryptionInformation;
final exclusiveSizeBytes = this.exclusiveSizeBytes;
final expireTime = this.expireTime;
final freeableSizeBytes = this.freeableSizeBytes;
final incrementalBackupChainId = this.incrementalBackupChainId;
final instancePartitions = this.instancePartitions;
final maxExpireTime = this.maxExpireTime;
final minimumRestorableEdition = this.minimumRestorableEdition;
final name = this.name;
final oldestVersionTime = this.oldestVersionTime;
final referencingBackups = this.referencingBackups;
final referencingDatabases = this.referencingDatabases;
final sizeBytes = this.sizeBytes;
final state = this.state;
final versionTime = this.versionTime;
return {
'backupSchedules': ?backupSchedules,
'createTime': ?createTime,
'database': ?database,
'databaseDialect': ?databaseDialect,
'encryptionInfo': ?encryptionInfo,
'encryptionInformation': ?encryptionInformation,
'exclusiveSizeBytes': ?exclusiveSizeBytes,
'expireTime': ?expireTime,
'freeableSizeBytes': ?freeableSizeBytes,
'incrementalBackupChainId': ?incrementalBackupChainId,
'instancePartitions': ?instancePartitions,
'maxExpireTime': ?maxExpireTime,
'minimumRestorableEdition': ?minimumRestorableEdition,
'name': ?name,
'oldestVersionTime': ?oldestVersionTime,
'referencingBackups': ?referencingBackups,
'referencingDatabases': ?referencingDatabases,
'sizeBytes': ?sizeBytes,
'state': ?state,
'versionTime': ?versionTime,
};
}