/** * 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 TransformValidateTokenRequest */ export interface TransformValidateTokenRequest { /** * Specifies a list of items to be checked for validity or not in a single batch. If this parameter is set, the top-level parameters 'value', and 'transformation' will be ignored. Each batch item within the list can specify these parameters instead. * @type {Array} * @memberof TransformValidateTokenRequest */ batchInput?: Array; /** * Name of the transformation. * @type {string} * @memberof TransformValidateTokenRequest */ transformation?: string; /** * Token that needs to be checked for validity. * @type {string} * @memberof TransformValidateTokenRequest */ value?: string; } /** * Check if a given object implements the TransformValidateTokenRequest interface. */ export declare function instanceOfTransformValidateTokenRequest(value: object): value is TransformValidateTokenRequest; export declare function TransformValidateTokenRequestFromJSON(json: any): TransformValidateTokenRequest; export declare function TransformValidateTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformValidateTokenRequest; export declare function TransformValidateTokenRequestToJSON(json: any): TransformValidateTokenRequest; export declare function TransformValidateTokenRequestToJSONTyped(value?: TransformValidateTokenRequest | null, ignoreDiscriminator?: boolean): any;