/** * 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. */ /** * JSON schema for a Favorite POJO * @export * @interface Favorite */ export interface Favorite { /** * * @type {string} * @memberof Favorite */ entityId?: string; /** * The id of the principal who is granted access * @type {string} * @memberof Favorite */ principalId?: string; /** * The date this entity was created. * @type {string} * @memberof Favorite */ createdOn?: string; } /** * Check if a given object implements the Favorite interface. */ export declare function instanceOfFavorite(value: object): value is Favorite; export declare function FavoriteFromJSON(json: any): Favorite; export declare function FavoriteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Favorite; export declare function FavoriteToJSON(json: any): Favorite; export declare function FavoriteToJSONTyped(value?: Favorite | null, ignoreDiscriminator?: boolean): any;