/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { RoleRelationshipsSchema } from './RoleRelationshipsSchema'; /** * * @export * @interface ListUserRolesRelationship */ export interface ListUserRolesRelationship { /** * List of resource linkage identifiers * @type {Array} * @memberof ListUserRolesRelationship */ data?: Array; /** * * @type {ResourceLinksSchema} * @memberof ListUserRolesRelationship */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ListUserRolesRelationship */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ListUserRolesRelationship interface. */ export declare function instanceOfListUserRolesRelationship(value: object): value is ListUserRolesRelationship; export declare function ListUserRolesRelationshipFromJSON(json: any): ListUserRolesRelationship; export declare function ListUserRolesRelationshipFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListUserRolesRelationship; export declare function ListUserRolesRelationshipToJSON(json: any): ListUserRolesRelationship; export declare function ListUserRolesRelationshipToJSONTyped(value?: ListUserRolesRelationship | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ListUserRolesRelationship.d.ts.map