Worker build updates
This commit is contained in:
parent
45c80ca98a
commit
0cf1c3b8fd
64 changed files with 4216 additions and 3450 deletions
|
|
@ -5,64 +5,70 @@
|
|||
* This is the Signal Cli REST API documentation.
|
||||
*
|
||||
* The version of the OpenAPI document: 1.0
|
||||
*
|
||||
*
|
||||
*
|
||||
* 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';
|
||||
import { mapValues } from "../runtime.js";
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @export
|
||||
* @interface ApiAddStickerPackRequest
|
||||
*/
|
||||
export interface ApiAddStickerPackRequest {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiAddStickerPackRequest
|
||||
*/
|
||||
packId?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiAddStickerPackRequest
|
||||
*/
|
||||
packKey?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiAddStickerPackRequest
|
||||
*/
|
||||
packId?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiAddStickerPackRequest
|
||||
*/
|
||||
packKey?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a given object implements the ApiAddStickerPackRequest interface.
|
||||
*/
|
||||
export function instanceOfApiAddStickerPackRequest(value: object): value is ApiAddStickerPackRequest {
|
||||
return true;
|
||||
export function instanceOfApiAddStickerPackRequest(
|
||||
value: object,
|
||||
): value is ApiAddStickerPackRequest {
|
||||
return true;
|
||||
}
|
||||
|
||||
export function ApiAddStickerPackRequestFromJSON(json: any): ApiAddStickerPackRequest {
|
||||
return ApiAddStickerPackRequestFromJSONTyped(json, false);
|
||||
export function ApiAddStickerPackRequestFromJSON(
|
||||
json: any,
|
||||
): ApiAddStickerPackRequest {
|
||||
return ApiAddStickerPackRequestFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function ApiAddStickerPackRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAddStickerPackRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
|
||||
'packId': json['pack_id'] == null ? undefined : json['pack_id'],
|
||||
'packKey': json['pack_key'] == null ? undefined : json['pack_key'],
|
||||
};
|
||||
export function ApiAddStickerPackRequestFromJSONTyped(
|
||||
json: any,
|
||||
ignoreDiscriminator: boolean,
|
||||
): ApiAddStickerPackRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
packId: json["pack_id"] == null ? undefined : json["pack_id"],
|
||||
packKey: json["pack_key"] == null ? undefined : json["pack_key"],
|
||||
};
|
||||
}
|
||||
|
||||
export function ApiAddStickerPackRequestToJSON(value?: ApiAddStickerPackRequest | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
|
||||
'pack_id': value['packId'],
|
||||
'pack_key': value['packKey'],
|
||||
};
|
||||
export function ApiAddStickerPackRequestToJSON(
|
||||
value?: ApiAddStickerPackRequest | null,
|
||||
): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
pack_id: value["packId"],
|
||||
pack_key: value["packKey"],
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue