/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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. */ import type { UserProfilePublic } from './UserProfilePublic'; import type { PermissionRole } from './PermissionRole'; /** * * @export * @interface PermissionWithUser */ export interface PermissionWithUser { /** * * @type {string} * @memberof PermissionWithUser */ 'resourceId': string; /** * * @type {string} * @memberof PermissionWithUser */ 'userId': string; /** * * @type {PermissionRole} * @memberof PermissionWithUser */ 'role': PermissionRole; /** * * @type {string} * @memberof PermissionWithUser */ 'createdAt': string; /** * * @type {string} * @memberof PermissionWithUser */ 'modifiedAt': string; /** * * @type {UserProfilePublic} * @memberof PermissionWithUser */ 'user': UserProfilePublic; } /** * Check if a given object implements the PermissionWithUser interface. */ export declare function instanceOfPermissionWithUser(value: object): value is PermissionWithUser; export declare function PermissionWithUserFromJSON(json: any): PermissionWithUser; export declare function PermissionWithUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionWithUser; export declare function PermissionWithUserToJSON(json: any): PermissionWithUser; export declare function PermissionWithUserToJSONTyped(value?: PermissionWithUser | null, ignoreDiscriminator?: boolean): any;