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