chore(server): auto sort open api spec (#3500)

* chore: recursively sort api keys

* chore: open api
This commit is contained in:
Jason Rasmussen 2023-08-01 12:49:18 -04:00 committed by GitHub
parent 690b87e375
commit 310fab526d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
190 changed files with 6172 additions and 6168 deletions

View file

@ -14,43 +14,43 @@ class ServerStatsResponseDto {
/// Returns a new [ServerStatsResponseDto] instance.
ServerStatsResponseDto({
this.photos = 0,
this.videos = 0,
this.usage = 0,
this.usageByUser = const [],
this.videos = 0,
});
int photos;
int videos;
int usage;
List<UsageByUserDto> usageByUser;
int videos;
@override
bool operator ==(Object other) => identical(this, other) || other is ServerStatsResponseDto &&
other.photos == photos &&
other.videos == videos &&
other.usage == usage &&
other.usageByUser == usageByUser;
other.usageByUser == usageByUser &&
other.videos == videos;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(photos.hashCode) +
(videos.hashCode) +
(usage.hashCode) +
(usageByUser.hashCode);
(usageByUser.hashCode) +
(videos.hashCode);
@override
String toString() => 'ServerStatsResponseDto[photos=$photos, videos=$videos, usage=$usage, usageByUser=$usageByUser]';
String toString() => 'ServerStatsResponseDto[photos=$photos, usage=$usage, usageByUser=$usageByUser, videos=$videos]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'photos'] = this.photos;
json[r'videos'] = this.videos;
json[r'usage'] = this.usage;
json[r'usageByUser'] = this.usageByUser;
json[r'videos'] = this.videos;
return json;
}
@ -63,9 +63,9 @@ class ServerStatsResponseDto {
return ServerStatsResponseDto(
photos: mapValueOfType<int>(json, r'photos')!,
videos: mapValueOfType<int>(json, r'videos')!,
usage: mapValueOfType<int>(json, r'usage')!,
usageByUser: UsageByUserDto.listFromJson(json[r'usageByUser']),
videos: mapValueOfType<int>(json, r'videos')!,
);
}
return null;
@ -114,9 +114,9 @@ class ServerStatsResponseDto {
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'photos',
'videos',
'usage',
'usageByUser',
'videos',
};
}