/** * 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 LdapWriteGroupRequest */ export interface LdapWriteGroupRequest { /** * Comma-separated list of policies associated to the group. * @type {Array} * @memberof LdapWriteGroupRequest */ policies?: Array; } /** * Check if a given object implements the LdapWriteGroupRequest interface. */ export declare function instanceOfLdapWriteGroupRequest(value: object): value is LdapWriteGroupRequest; export declare function LdapWriteGroupRequestFromJSON(json: any): LdapWriteGroupRequest; export declare function LdapWriteGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LdapWriteGroupRequest; export declare function LdapWriteGroupRequestToJSON(json: any): LdapWriteGroupRequest; export declare function LdapWriteGroupRequestToJSONTyped(value?: LdapWriteGroupRequest | null, ignoreDiscriminator?: boolean): any;