toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (backupPlan != null) 'backupPlan': backupPlan!,
  if (backupPlanRevisionId != null)
    'backupPlanRevisionId': backupPlanRevisionId!,
  if (backupPlanRevisionName != null)
    'backupPlanRevisionName': backupPlanRevisionName!,
  if (cloudSqlInstanceBackupPlanAssociationProperties != null)
    'cloudSqlInstanceBackupPlanAssociationProperties':
        cloudSqlInstanceBackupPlanAssociationProperties!,
  if (createTime != null) 'createTime': createTime!,
  if (dataSource != null) 'dataSource': dataSource!,
  if (name != null) 'name': name!,
  if (resource != null) 'resource': resource!,
  if (resourceType != null) 'resourceType': resourceType!,
  if (rulesConfigInfo != null) 'rulesConfigInfo': rulesConfigInfo!,
  if (state != null) 'state': state!,
  if (updateTime != null) 'updateTime': updateTime!,
};