/** * 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 SystemWriteSyncDestinationsVercelProjectNameResponse */ export interface SystemWriteSyncDestinationsVercelProjectNameResponse { /** * List of key value pairs of information necessary to connect with the external system. * @type {object} * @memberof SystemWriteSyncDestinationsVercelProjectNameResponse */ connectionDetails?: object; /** * Name of this secrets store. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameResponse */ name?: string; /** * Type of this secrets store. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameResponse */ type?: string; } /** * Check if a given object implements the SystemWriteSyncDestinationsVercelProjectNameResponse interface. */ export declare function instanceOfSystemWriteSyncDestinationsVercelProjectNameResponse(value: object): value is SystemWriteSyncDestinationsVercelProjectNameResponse; export declare function SystemWriteSyncDestinationsVercelProjectNameResponseFromJSON(json: any): SystemWriteSyncDestinationsVercelProjectNameResponse; export declare function SystemWriteSyncDestinationsVercelProjectNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteSyncDestinationsVercelProjectNameResponse; export declare function SystemWriteSyncDestinationsVercelProjectNameResponseToJSON(json: any): SystemWriteSyncDestinationsVercelProjectNameResponse; export declare function SystemWriteSyncDestinationsVercelProjectNameResponseToJSONTyped(value?: SystemWriteSyncDestinationsVercelProjectNameResponse | null, ignoreDiscriminator?: boolean): any;