feat: add partner create endpoint (#21625)

This commit is contained in:
Jason Rasmussen
2025-09-05 17:59:11 -04:00
committed by GitHub
parent db0ea0f3a8
commit 5a7042364b
18 changed files with 477 additions and 75 deletions

View File

@@ -0,0 +1,99 @@
//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// ignore_for_file: unused_element, unused_import
// ignore_for_file: always_put_required_named_parameters_first
// ignore_for_file: constant_identifier_names
// ignore_for_file: lines_longer_than_80_chars
part of openapi.api;
class PartnerCreateDto {
/// Returns a new [PartnerCreateDto] instance.
PartnerCreateDto({
required this.sharedWithId,
});
String sharedWithId;
@override
bool operator ==(Object other) => identical(this, other) || other is PartnerCreateDto &&
other.sharedWithId == sharedWithId;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(sharedWithId.hashCode);
@override
String toString() => 'PartnerCreateDto[sharedWithId=$sharedWithId]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'sharedWithId'] = this.sharedWithId;
return json;
}
/// Returns a new [PartnerCreateDto] instance and imports its values from
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static PartnerCreateDto? fromJson(dynamic value) {
upgradeDto(value, "PartnerCreateDto");
if (value is Map) {
final json = value.cast<String, dynamic>();
return PartnerCreateDto(
sharedWithId: mapValueOfType<String>(json, r'sharedWithId')!,
);
}
return null;
}
static List<PartnerCreateDto> listFromJson(dynamic json, {bool growable = false,}) {
final result = <PartnerCreateDto>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = PartnerCreateDto.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}
static Map<String, PartnerCreateDto> mapFromJson(dynamic json) {
final map = <String, PartnerCreateDto>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = PartnerCreateDto.fromJson(entry.value);
if (value != null) {
map[entry.key] = value;
}
}
}
return map;
}
// maps a json object with a list of PartnerCreateDto-objects as value to a dart map
static Map<String, List<PartnerCreateDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<PartnerCreateDto>>{};
if (json is Map && json.isNotEmpty) {
// ignore: parameter_assignments
json = json.cast<String, dynamic>();
for (final entry in json.entries) {
map[entry.key] = PartnerCreateDto.listFromJson(entry.value, growable: growable,);
}
}
return map;
}
/// The list of required keys that must be present in a JSON.
static const requiredKeys = <String>{
'sharedWithId',
};
}

View File

@@ -10,16 +10,16 @@
part of openapi.api;
class UpdatePartnerDto {
/// Returns a new [UpdatePartnerDto] instance.
UpdatePartnerDto({
class PartnerUpdateDto {
/// Returns a new [PartnerUpdateDto] instance.
PartnerUpdateDto({
required this.inTimeline,
});
bool inTimeline;
@override
bool operator ==(Object other) => identical(this, other) || other is UpdatePartnerDto &&
bool operator ==(Object other) => identical(this, other) || other is PartnerUpdateDto &&
other.inTimeline == inTimeline;
@override
@@ -28,7 +28,7 @@ class UpdatePartnerDto {
(inTimeline.hashCode);
@override
String toString() => 'UpdatePartnerDto[inTimeline=$inTimeline]';
String toString() => 'PartnerUpdateDto[inTimeline=$inTimeline]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
@@ -36,26 +36,26 @@ class UpdatePartnerDto {
return json;
}
/// Returns a new [UpdatePartnerDto] instance and imports its values from
/// Returns a new [PartnerUpdateDto] instance and imports its values from
/// [value] if it's a [Map], null otherwise.
// ignore: prefer_constructors_over_static_methods
static UpdatePartnerDto? fromJson(dynamic value) {
upgradeDto(value, "UpdatePartnerDto");
static PartnerUpdateDto? fromJson(dynamic value) {
upgradeDto(value, "PartnerUpdateDto");
if (value is Map) {
final json = value.cast<String, dynamic>();
return UpdatePartnerDto(
return PartnerUpdateDto(
inTimeline: mapValueOfType<bool>(json, r'inTimeline')!,
);
}
return null;
}
static List<UpdatePartnerDto> listFromJson(dynamic json, {bool growable = false,}) {
final result = <UpdatePartnerDto>[];
static List<PartnerUpdateDto> listFromJson(dynamic json, {bool growable = false,}) {
final result = <PartnerUpdateDto>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = UpdatePartnerDto.fromJson(row);
final value = PartnerUpdateDto.fromJson(row);
if (value != null) {
result.add(value);
}
@@ -64,12 +64,12 @@ class UpdatePartnerDto {
return result.toList(growable: growable);
}
static Map<String, UpdatePartnerDto> mapFromJson(dynamic json) {
final map = <String, UpdatePartnerDto>{};
static Map<String, PartnerUpdateDto> mapFromJson(dynamic json) {
final map = <String, PartnerUpdateDto>{};
if (json is Map && json.isNotEmpty) {
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
for (final entry in json.entries) {
final value = UpdatePartnerDto.fromJson(entry.value);
final value = PartnerUpdateDto.fromJson(entry.value);
if (value != null) {
map[entry.key] = value;
}
@@ -78,14 +78,14 @@ class UpdatePartnerDto {
return map;
}
// maps a json object with a list of UpdatePartnerDto-objects as value to a dart map
static Map<String, List<UpdatePartnerDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<UpdatePartnerDto>>{};
// maps a json object with a list of PartnerUpdateDto-objects as value to a dart map
static Map<String, List<PartnerUpdateDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
final map = <String, List<PartnerUpdateDto>>{};
if (json is Map && json.isNotEmpty) {
// ignore: parameter_assignments
json = json.cast<String, dynamic>();
for (final entry in json.entries) {
map[entry.key] = UpdatePartnerDto.listFromJson(entry.value, growable: growable,);
map[entry.key] = PartnerUpdateDto.listFromJson(entry.value, growable: growable,);
}
}
return map;