/** * 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 CreateOrganizationUserRoleRequest */ export interface CreateOrganizationUserRoleRequest { /** * The role id. * @type {string} * @memberof CreateOrganizationUserRoleRequest */ roleId?: string; } /** * Check if a given object implements the CreateOrganizationUserRoleRequest interface. */ export declare function instanceOfCreateOrganizationUserRoleRequest(value: object): boolean; export declare function CreateOrganizationUserRoleRequestFromJSON(json: any): CreateOrganizationUserRoleRequest; export declare function CreateOrganizationUserRoleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrganizationUserRoleRequest; export declare function CreateOrganizationUserRoleRequestToJSON(value?: CreateOrganizationUserRoleRequest | null): any;