/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.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 RoleAssignmentCreateWithStrictTenant */ export interface RoleAssignmentCreateWithStrictTenant { /** * the role that will be assigned (accepts either the role id or the role key) * @type {string} * @memberof RoleAssignmentCreateWithStrictTenant */ role: string; /** * the tenant the role is associated with (accepts either the tenant id or the tenant key) * @type {string} * @memberof RoleAssignmentCreateWithStrictTenant */ tenant: string; /** * the tenant the role is associated with (accepts either the tenant id or the tenant key) * @type {string} * @memberof RoleAssignmentCreateWithStrictTenant */ resource_instance?: string; /** * the user the role will be assigned to (accepts either the user id or the user key) * @type {string} * @memberof RoleAssignmentCreateWithStrictTenant */ user: string; }