/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 Permissions */ export interface Permissions { /** * The permission's id. * @type {string} * @memberof Permissions */ id?: string; /** * The permission identifier to use in code. * @type {string} * @memberof Permissions */ key?: string; /** * The permission's name. * @type {string} * @memberof Permissions */ name?: string; /** * The permission's description. * @type {string} * @memberof Permissions */ description?: string; } /** * Check if a given object implements the Permissions interface. */ export declare function instanceOfPermissions(value: object): boolean; export declare function PermissionsFromJSON(json: any): Permissions; export declare function PermissionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Permissions; export declare function PermissionsToJSON(value?: Permissions | null): any;