/** * 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 QueryTokenCapabilitiesRequest */ export interface QueryTokenCapabilitiesRequest { /** * Use 'paths' instead. * @type {Array} * @memberof QueryTokenCapabilitiesRequest * @deprecated */ path?: Array; /** * Paths on which capabilities are being queried. * @type {Array} * @memberof QueryTokenCapabilitiesRequest */ paths?: Array; /** * Token for which capabilities are being queried. * @type {string} * @memberof QueryTokenCapabilitiesRequest */ token?: string; } /** * Check if a given object implements the QueryTokenCapabilitiesRequest interface. */ export declare function instanceOfQueryTokenCapabilitiesRequest(value: object): value is QueryTokenCapabilitiesRequest; export declare function QueryTokenCapabilitiesRequestFromJSON(json: any): QueryTokenCapabilitiesRequest; export declare function QueryTokenCapabilitiesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryTokenCapabilitiesRequest; export declare function QueryTokenCapabilitiesRequestToJSON(json: any): QueryTokenCapabilitiesRequest; export declare function QueryTokenCapabilitiesRequestToJSONTyped(value?: QueryTokenCapabilitiesRequest | null, ignoreDiscriminator?: boolean): any;