/** * 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.20.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 SubscriptionsReadEventsSubscriptionsResponse */ export interface SubscriptionsReadEventsSubscriptionsResponse { /** * * @type {Array} * @memberof SubscriptionsReadEventsSubscriptionsResponse */ subscriptions?: Array; } /** * Check if a given object implements the SubscriptionsReadEventsSubscriptionsResponse interface. */ export declare function instanceOfSubscriptionsReadEventsSubscriptionsResponse(value: object): value is SubscriptionsReadEventsSubscriptionsResponse; export declare function SubscriptionsReadEventsSubscriptionsResponseFromJSON(json: any): SubscriptionsReadEventsSubscriptionsResponse; export declare function SubscriptionsReadEventsSubscriptionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionsReadEventsSubscriptionsResponse; export declare function SubscriptionsReadEventsSubscriptionsResponseToJSON(json: any): SubscriptionsReadEventsSubscriptionsResponse; export declare function SubscriptionsReadEventsSubscriptionsResponseToJSONTyped(value?: SubscriptionsReadEventsSubscriptionsResponse | null, ignoreDiscriminator?: boolean): any;