/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Base serializer class which doesn't implement create/update methods * @export * @interface GrantRequestCreateRequest */ export interface GrantRequestCreateRequest { /** * * @type {Array} * @memberof GrantRequestCreateRequest */ pbms: Array; /** * Optional override for how long the grant should last once approved. Clamped to the granting rule binding(s)' expiry_granted_max. * @type {string} * @memberof GrantRequestCreateRequest */ expiry?: string; } /** * Check if a given object implements the GrantRequestCreateRequest interface. */ export declare function instanceOfGrantRequestCreateRequest(value: object): value is GrantRequestCreateRequest; export declare function GrantRequestCreateRequestFromJSON(json: any): GrantRequestCreateRequest; export declare function GrantRequestCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantRequestCreateRequest; export declare function GrantRequestCreateRequestToJSON(json: any): GrantRequestCreateRequest; export declare function GrantRequestCreateRequestToJSONTyped(value?: GrantRequestCreateRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GrantRequestCreateRequest.d.ts.map