-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
2,473 additions
and
301 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
79 changes: 79 additions & 0 deletions
79
ui/packages/api-client/src/models/IoSakurasouControllerRequestAlbumManageInsertRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* HoshizoraPics API | ||
* API for testing and demonstration purposes. | ||
* | ||
* The version of the OpenAPI document: latest | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface IoSakurasouControllerRequestAlbumManageInsertRequest | ||
*/ | ||
export interface IoSakurasouControllerRequestAlbumManageInsertRequest { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumManageInsertRequest | ||
*/ | ||
description: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumManageInsertRequest | ||
*/ | ||
name: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof IoSakurasouControllerRequestAlbumManageInsertRequest | ||
*/ | ||
userId: number; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the IoSakurasouControllerRequestAlbumManageInsertRequest interface. | ||
*/ | ||
export function instanceOfIoSakurasouControllerRequestAlbumManageInsertRequest(value: object): value is IoSakurasouControllerRequestAlbumManageInsertRequest { | ||
if (!('description' in value) || value['description'] === undefined) return false; | ||
if (!('name' in value) || value['name'] === undefined) return false; | ||
if (!('userId' in value) || value['userId'] === undefined) return false; | ||
return true; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManageInsertRequestFromJSON(json: any): IoSakurasouControllerRequestAlbumManageInsertRequest { | ||
return IoSakurasouControllerRequestAlbumManageInsertRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManageInsertRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IoSakurasouControllerRequestAlbumManageInsertRequest { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'description': json['description'], | ||
'name': json['name'], | ||
'userId': json['userId'], | ||
}; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManageInsertRequestToJSON(value?: IoSakurasouControllerRequestAlbumManageInsertRequest | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'description': value['description'], | ||
'name': value['name'], | ||
'userId': value['userId'], | ||
}; | ||
} | ||
|
77 changes: 77 additions & 0 deletions
77
ui/packages/api-client/src/models/IoSakurasouControllerRequestAlbumManagePatchRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* HoshizoraPics API | ||
* API for testing and demonstration purposes. | ||
* | ||
* The version of the OpenAPI document: latest | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface IoSakurasouControllerRequestAlbumManagePatchRequest | ||
*/ | ||
export interface IoSakurasouControllerRequestAlbumManagePatchRequest { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumManagePatchRequest | ||
*/ | ||
description?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumManagePatchRequest | ||
*/ | ||
name?: string; | ||
/** | ||
* | ||
* @type {number} | ||
* @memberof IoSakurasouControllerRequestAlbumManagePatchRequest | ||
*/ | ||
userId: number; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the IoSakurasouControllerRequestAlbumManagePatchRequest interface. | ||
*/ | ||
export function instanceOfIoSakurasouControllerRequestAlbumManagePatchRequest(value: object): value is IoSakurasouControllerRequestAlbumManagePatchRequest { | ||
if (!('userId' in value) || value['userId'] === undefined) return false; | ||
return true; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManagePatchRequestFromJSON(json: any): IoSakurasouControllerRequestAlbumManagePatchRequest { | ||
return IoSakurasouControllerRequestAlbumManagePatchRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManagePatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IoSakurasouControllerRequestAlbumManagePatchRequest { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'description': json['description'] == null ? undefined : json['description'], | ||
'name': json['name'] == null ? undefined : json['name'], | ||
'userId': json['userId'], | ||
}; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumManagePatchRequestToJSON(value?: IoSakurasouControllerRequestAlbumManagePatchRequest | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'description': value['description'], | ||
'name': value['name'], | ||
'userId': value['userId'], | ||
}; | ||
} | ||
|
70 changes: 70 additions & 0 deletions
70
ui/packages/api-client/src/models/IoSakurasouControllerRequestAlbumSelfInsertRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* HoshizoraPics API | ||
* API for testing and demonstration purposes. | ||
* | ||
* The version of the OpenAPI document: latest | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface IoSakurasouControllerRequestAlbumSelfInsertRequest | ||
*/ | ||
export interface IoSakurasouControllerRequestAlbumSelfInsertRequest { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumSelfInsertRequest | ||
*/ | ||
description: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumSelfInsertRequest | ||
*/ | ||
name: string; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the IoSakurasouControllerRequestAlbumSelfInsertRequest interface. | ||
*/ | ||
export function instanceOfIoSakurasouControllerRequestAlbumSelfInsertRequest(value: object): value is IoSakurasouControllerRequestAlbumSelfInsertRequest { | ||
if (!('description' in value) || value['description'] === undefined) return false; | ||
if (!('name' in value) || value['name'] === undefined) return false; | ||
return true; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfInsertRequestFromJSON(json: any): IoSakurasouControllerRequestAlbumSelfInsertRequest { | ||
return IoSakurasouControllerRequestAlbumSelfInsertRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfInsertRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IoSakurasouControllerRequestAlbumSelfInsertRequest { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'description': json['description'], | ||
'name': json['name'], | ||
}; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfInsertRequestToJSON(value?: IoSakurasouControllerRequestAlbumSelfInsertRequest | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'description': value['description'], | ||
'name': value['name'], | ||
}; | ||
} | ||
|
68 changes: 68 additions & 0 deletions
68
ui/packages/api-client/src/models/IoSakurasouControllerRequestAlbumSelfPatchRequest.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* HoshizoraPics API | ||
* API for testing and demonstration purposes. | ||
* | ||
* The version of the OpenAPI document: latest | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface IoSakurasouControllerRequestAlbumSelfPatchRequest | ||
*/ | ||
export interface IoSakurasouControllerRequestAlbumSelfPatchRequest { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumSelfPatchRequest | ||
*/ | ||
description?: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof IoSakurasouControllerRequestAlbumSelfPatchRequest | ||
*/ | ||
name?: string; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the IoSakurasouControllerRequestAlbumSelfPatchRequest interface. | ||
*/ | ||
export function instanceOfIoSakurasouControllerRequestAlbumSelfPatchRequest(value: object): value is IoSakurasouControllerRequestAlbumSelfPatchRequest { | ||
return true; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfPatchRequestFromJSON(json: any): IoSakurasouControllerRequestAlbumSelfPatchRequest { | ||
return IoSakurasouControllerRequestAlbumSelfPatchRequestFromJSONTyped(json, false); | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfPatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): IoSakurasouControllerRequestAlbumSelfPatchRequest { | ||
if (json == null) { | ||
return json; | ||
} | ||
return { | ||
|
||
'description': json['description'] == null ? undefined : json['description'], | ||
'name': json['name'] == null ? undefined : json['name'], | ||
}; | ||
} | ||
|
||
export function IoSakurasouControllerRequestAlbumSelfPatchRequestToJSON(value?: IoSakurasouControllerRequestAlbumSelfPatchRequest | null): any { | ||
if (value == null) { | ||
return value; | ||
} | ||
return { | ||
|
||
'description': value['description'], | ||
'name': value['name'], | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.