/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { UserProfile } from './UserProfile'; /** * * @export * @interface ListWrapperOfUserProfile */ export interface ListWrapperOfUserProfile { /** * * @type {Array} * @memberof ListWrapperOfUserProfile */ list?: Array; } /** * Check if a given object implements the ListWrapperOfUserProfile interface. */ export declare function instanceOfListWrapperOfUserProfile(value: object): value is ListWrapperOfUserProfile; export declare function ListWrapperOfUserProfileFromJSON(json: any): ListWrapperOfUserProfile; export declare function ListWrapperOfUserProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListWrapperOfUserProfile; export declare function ListWrapperOfUserProfileToJSON(json: any): ListWrapperOfUserProfile; export declare function ListWrapperOfUserProfileToJSONTyped(value?: ListWrapperOfUserProfile | null, ignoreDiscriminator?: boolean): any;