/** * 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 GenerateRandomWithSourceResponse */ export interface GenerateRandomWithSourceResponse { /** * * @type {string} * @memberof GenerateRandomWithSourceResponse */ randomBytes?: string; } /** * Check if a given object implements the GenerateRandomWithSourceResponse interface. */ export declare function instanceOfGenerateRandomWithSourceResponse(value: object): value is GenerateRandomWithSourceResponse; export declare function GenerateRandomWithSourceResponseFromJSON(json: any): GenerateRandomWithSourceResponse; export declare function GenerateRandomWithSourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenerateRandomWithSourceResponse; export declare function GenerateRandomWithSourceResponseToJSON(json: any): GenerateRandomWithSourceResponse; export declare function GenerateRandomWithSourceResponseToJSONTyped(value?: GenerateRandomWithSourceResponse | null, ignoreDiscriminator?: boolean): any;