mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
75 lines
2.0 KiB
TypeScript
75 lines
2.0 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 CreateCustomMessageRequest
|
|
*/
|
|
export interface CreateCustomMessageRequest {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
authenticated?: boolean;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
endTime?: Date;
|
|
/**
|
|
*
|
|
* @type {object}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
link?: object;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
message: string;
|
|
/**
|
|
*
|
|
* @type {object}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
options?: object;
|
|
/**
|
|
*
|
|
* @type {Date}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
startTime: Date;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
title: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof CreateCustomMessageRequest
|
|
*/
|
|
type?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the CreateCustomMessageRequest interface.
|
|
*/
|
|
export declare function instanceOfCreateCustomMessageRequest(value: object): value is CreateCustomMessageRequest;
|
|
export declare function CreateCustomMessageRequestFromJSON(json: any): CreateCustomMessageRequest;
|
|
export declare function CreateCustomMessageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomMessageRequest;
|
|
export declare function CreateCustomMessageRequestToJSON(json: any): CreateCustomMessageRequest;
|
|
export declare function CreateCustomMessageRequestToJSONTyped(value?: CreateCustomMessageRequest | null, ignoreDiscriminator?: boolean): any;
|