Worker build updates
This commit is contained in:
parent
45c80ca98a
commit
0cf1c3b8fd
64 changed files with 4216 additions and 3450 deletions
|
|
@ -5,56 +5,62 @@
|
|||
* 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 ApiTypingIndicatorRequest
|
||||
*/
|
||||
export interface ApiTypingIndicatorRequest {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiTypingIndicatorRequest
|
||||
*/
|
||||
recipient?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiTypingIndicatorRequest
|
||||
*/
|
||||
recipient?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a given object implements the ApiTypingIndicatorRequest interface.
|
||||
*/
|
||||
export function instanceOfApiTypingIndicatorRequest(value: object): value is ApiTypingIndicatorRequest {
|
||||
return true;
|
||||
export function instanceOfApiTypingIndicatorRequest(
|
||||
value: object,
|
||||
): value is ApiTypingIndicatorRequest {
|
||||
return true;
|
||||
}
|
||||
|
||||
export function ApiTypingIndicatorRequestFromJSON(json: any): ApiTypingIndicatorRequest {
|
||||
return ApiTypingIndicatorRequestFromJSONTyped(json, false);
|
||||
export function ApiTypingIndicatorRequestFromJSON(
|
||||
json: any,
|
||||
): ApiTypingIndicatorRequest {
|
||||
return ApiTypingIndicatorRequestFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function ApiTypingIndicatorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiTypingIndicatorRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
|
||||
'recipient': json['recipient'] == null ? undefined : json['recipient'],
|
||||
};
|
||||
export function ApiTypingIndicatorRequestFromJSONTyped(
|
||||
json: any,
|
||||
ignoreDiscriminator: boolean,
|
||||
): ApiTypingIndicatorRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
recipient: json["recipient"] == null ? undefined : json["recipient"],
|
||||
};
|
||||
}
|
||||
|
||||
export function ApiTypingIndicatorRequestToJSON(value?: ApiTypingIndicatorRequest | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
|
||||
'recipient': value['recipient'],
|
||||
};
|
||||
export function ApiTypingIndicatorRequestToJSON(
|
||||
value?: ApiTypingIndicatorRequest | null,
|
||||
): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
recipient: value["recipient"],
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue