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