/** * 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 AppRoleReadRoleIdResponse */ export interface AppRoleReadRoleIdResponse { /** * Identifier of the role. Defaults to a UUID. * @type {string} * @memberof AppRoleReadRoleIdResponse */ roleId?: string; } /** * Check if a given object implements the AppRoleReadRoleIdResponse interface. */ export declare function instanceOfAppRoleReadRoleIdResponse(value: object): value is AppRoleReadRoleIdResponse; export declare function AppRoleReadRoleIdResponseFromJSON(json: any): AppRoleReadRoleIdResponse; export declare function AppRoleReadRoleIdResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppRoleReadRoleIdResponse; export declare function AppRoleReadRoleIdResponseToJSON(json: any): AppRoleReadRoleIdResponse; export declare function AppRoleReadRoleIdResponseToJSONTyped(value?: AppRoleReadRoleIdResponse | null, ignoreDiscriminator?: boolean): any;