/** * 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. */ /** * * @export * @interface UserProfilePublic */ export interface UserProfilePublic { /** * * @type {string} * @memberof UserProfilePublic */ 'id': string; /** * * @type {string} * @memberof UserProfilePublic */ 'name'?: string | null; /** * * @type {string} * @memberof UserProfilePublic */ 'pictureUrlCdn'?: string | null; } /** * Check if a given object implements the UserProfilePublic interface. */ export declare function instanceOfUserProfilePublic(value: object): value is UserProfilePublic; export declare function UserProfilePublicFromJSON(json: any): UserProfilePublic; export declare function UserProfilePublicFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfilePublic; export declare function UserProfilePublicToJSON(json: any): UserProfilePublic; export declare function UserProfilePublicToJSONTyped(value?: UserProfilePublic | null, ignoreDiscriminator?: boolean): any;