/** * 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 CreateBookmarkRequestLocationAnyOf */ export interface CreateBookmarkRequestLocationAnyOf { /** * * @type {string} * @memberof CreateBookmarkRequestLocationAnyOf */ 'sortKey': string; /** * * @type {string} * @memberof CreateBookmarkRequestLocationAnyOf */ 'insertAfterId': string; } /** * Check if a given object implements the CreateBookmarkRequestLocationAnyOf interface. */ export declare function instanceOfCreateBookmarkRequestLocationAnyOf(value: object): value is CreateBookmarkRequestLocationAnyOf; export declare function CreateBookmarkRequestLocationAnyOfFromJSON(json: any): CreateBookmarkRequestLocationAnyOf; export declare function CreateBookmarkRequestLocationAnyOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBookmarkRequestLocationAnyOf; export declare function CreateBookmarkRequestLocationAnyOfToJSON(json: any): CreateBookmarkRequestLocationAnyOf; export declare function CreateBookmarkRequestLocationAnyOfToJSONTyped(value?: CreateBookmarkRequestLocationAnyOf | null, ignoreDiscriminator?: boolean): any;