/** * 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 OidcWriteScopeRequest */ export interface OidcWriteScopeRequest { /** * The description of the scope * @type {string} * @memberof OidcWriteScopeRequest */ description?: string; /** * The template string to use for the scope. This may be in string-ified JSON or base64 format. * @type {string} * @memberof OidcWriteScopeRequest */ template?: string; } /** * Check if a given object implements the OidcWriteScopeRequest interface. */ export declare function instanceOfOidcWriteScopeRequest(value: object): value is OidcWriteScopeRequest; export declare function OidcWriteScopeRequestFromJSON(json: any): OidcWriteScopeRequest; export declare function OidcWriteScopeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OidcWriteScopeRequest; export declare function OidcWriteScopeRequestToJSON(json: any): OidcWriteScopeRequest; export declare function OidcWriteScopeRequestToJSONTyped(value?: OidcWriteScopeRequest | null, ignoreDiscriminator?: boolean): any;