/** * 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 GenerateRandomWithSourceAndBytesResponse */ export interface GenerateRandomWithSourceAndBytesResponse { /** * * @type {string} * @memberof GenerateRandomWithSourceAndBytesResponse */ randomBytes?: string; } /** * Check if a given object implements the GenerateRandomWithSourceAndBytesResponse interface. */ export declare function instanceOfGenerateRandomWithSourceAndBytesResponse(value: object): value is GenerateRandomWithSourceAndBytesResponse; export declare function GenerateRandomWithSourceAndBytesResponseFromJSON(json: any): GenerateRandomWithSourceAndBytesResponse; export declare function GenerateRandomWithSourceAndBytesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenerateRandomWithSourceAndBytesResponse; export declare function GenerateRandomWithSourceAndBytesResponseToJSON(json: any): GenerateRandomWithSourceAndBytesResponse; export declare function GenerateRandomWithSourceAndBytesResponseToJSONTyped(value?: GenerateRandomWithSourceAndBytesResponse | null, ignoreDiscriminator?: boolean): any;