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

39 lines
1.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 UiConfigListCustomMessagesResponse
*/
export interface UiConfigListCustomMessagesResponse {
/**
*
* @type {object}
* @memberof UiConfigListCustomMessagesResponse
*/
keyInfo?: object;
/**
*
* @type {Array<string>}
* @memberof UiConfigListCustomMessagesResponse
*/
keys?: Array<string>;
}
/**
* Check if a given object implements the UiConfigListCustomMessagesResponse interface.
*/
export declare function instanceOfUiConfigListCustomMessagesResponse(value: object): value is UiConfigListCustomMessagesResponse;
export declare function UiConfigListCustomMessagesResponseFromJSON(json: any): UiConfigListCustomMessagesResponse;
export declare function UiConfigListCustomMessagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigListCustomMessagesResponse;
export declare function UiConfigListCustomMessagesResponseToJSON(json: any): UiConfigListCustomMessagesResponse;
export declare function UiConfigListCustomMessagesResponseToJSONTyped(value?: UiConfigListCustomMessagesResponse | null, ignoreDiscriminator?: boolean): any;