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 ApiSetUsernameRequest
|
||||
*/
|
||||
export interface ApiSetUsernameRequest {
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiSetUsernameRequest
|
||||
*/
|
||||
username?: string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof ApiSetUsernameRequest
|
||||
*/
|
||||
username?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a given object implements the ApiSetUsernameRequest interface.
|
||||
*/
|
||||
export function instanceOfApiSetUsernameRequest(value: object): value is ApiSetUsernameRequest {
|
||||
return true;
|
||||
export function instanceOfApiSetUsernameRequest(
|
||||
value: object,
|
||||
): value is ApiSetUsernameRequest {
|
||||
return true;
|
||||
}
|
||||
|
||||
export function ApiSetUsernameRequestFromJSON(json: any): ApiSetUsernameRequest {
|
||||
return ApiSetUsernameRequestFromJSONTyped(json, false);
|
||||
export function ApiSetUsernameRequestFromJSON(
|
||||
json: any,
|
||||
): ApiSetUsernameRequest {
|
||||
return ApiSetUsernameRequestFromJSONTyped(json, false);
|
||||
}
|
||||
|
||||
export function ApiSetUsernameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiSetUsernameRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
|
||||
'username': json['username'] == null ? undefined : json['username'],
|
||||
};
|
||||
export function ApiSetUsernameRequestFromJSONTyped(
|
||||
json: any,
|
||||
ignoreDiscriminator: boolean,
|
||||
): ApiSetUsernameRequest {
|
||||
if (json == null) {
|
||||
return json;
|
||||
}
|
||||
return {
|
||||
username: json["username"] == null ? undefined : json["username"],
|
||||
};
|
||||
}
|
||||
|
||||
export function ApiSetUsernameRequestToJSON(value?: ApiSetUsernameRequest | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
|
||||
'username': value['username'],
|
||||
};
|
||||
export function ApiSetUsernameRequestToJSON(
|
||||
value?: ApiSetUsernameRequest | null,
|
||||
): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
return {
|
||||
username: value["username"],
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue