vault/ui/api-client/dist/esm/models/UiConfigUpdateCustomMessageResponse.d.ts

87 lines
2.4 KiB
TypeScript

/**
* HashiCorp Vault API
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
*
* The version of the OpenAPI document: 1.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface UiConfigUpdateCustomMessageResponse
*/
export interface UiConfigUpdateCustomMessageResponse {
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
active?: boolean;
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
authenticated?: boolean;
/**
*
* @type {Date}
* @memberof UiConfigUpdateCustomMessageResponse
*/
endTime?: Date;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
id?: string;
/**
*
* @type {object}
* @memberof UiConfigUpdateCustomMessageResponse
*/
link?: object;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
message?: string;
/**
*
* @type {object}
* @memberof UiConfigUpdateCustomMessageResponse
*/
options?: object;
/**
*
* @type {Date}
* @memberof UiConfigUpdateCustomMessageResponse
*/
startTime?: Date;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
title?: string;
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
type?: boolean;
}
/**
* Check if a given object implements the UiConfigUpdateCustomMessageResponse interface.
*/
export declare function instanceOfUiConfigUpdateCustomMessageResponse(value: object): value is UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseFromJSON(json: any): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseToJSON(json: any): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseToJSONTyped(value?: UiConfigUpdateCustomMessageResponse | null, ignoreDiscriminator?: boolean): any;