/** * 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 Roles */ export interface Roles { /** * The role's id. * @type {string} * @memberof Roles */ id?: string; /** * The role identifier to use in code. * @type {string} * @memberof Roles */ key?: string; /** * The role's name. * @type {string} * @memberof Roles */ name?: string; /** * The role's description. * @type {string} * @memberof Roles */ description?: string; } /** * Check if a given object implements the Roles interface. */ export declare function instanceOfRoles(value: object): boolean; export declare function RolesFromJSON(json: any): Roles; export declare function RolesFromJSONTyped(json: any, ignoreDiscriminator: boolean): Roles; export declare function RolesToJSON(value?: Roles | null): any;