/** * 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 CreateBookmarkRequestLocationAnyOf1 */ export interface CreateBookmarkRequestLocationAnyOf1 { /** * * @type {string} * @memberof CreateBookmarkRequestLocationAnyOf1 */ 'sortKey': string; /** * * @type {string} * @memberof CreateBookmarkRequestLocationAnyOf1 */ 'insertBeforeId': string; } /** * Check if a given object implements the CreateBookmarkRequestLocationAnyOf1 interface. */ export declare function instanceOfCreateBookmarkRequestLocationAnyOf1(value: object): value is CreateBookmarkRequestLocationAnyOf1; export declare function CreateBookmarkRequestLocationAnyOf1FromJSON(json: any): CreateBookmarkRequestLocationAnyOf1; export declare function CreateBookmarkRequestLocationAnyOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBookmarkRequestLocationAnyOf1; export declare function CreateBookmarkRequestLocationAnyOf1ToJSON(json: any): CreateBookmarkRequestLocationAnyOf1; export declare function CreateBookmarkRequestLocationAnyOf1ToJSONTyped(value?: CreateBookmarkRequestLocationAnyOf1 | null, ignoreDiscriminator?: boolean): any;