/** * 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 CreateBookmarkRequestLocation */ export interface CreateBookmarkRequestLocation { /** * * @type {string} * @memberof CreateBookmarkRequestLocation */ 'sortKey': string; /** * * @type {string} * @memberof CreateBookmarkRequestLocation */ 'insertAfterId': string; /** * * @type {string} * @memberof CreateBookmarkRequestLocation */ 'insertBeforeId': string; } /** * Check if a given object implements the CreateBookmarkRequestLocation interface. */ export declare function instanceOfCreateBookmarkRequestLocation(value: object): value is CreateBookmarkRequestLocation; export declare function CreateBookmarkRequestLocationFromJSON(json: any): CreateBookmarkRequestLocation; export declare function CreateBookmarkRequestLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBookmarkRequestLocation; export declare function CreateBookmarkRequestLocationToJSON(json: any): CreateBookmarkRequestLocation; export declare function CreateBookmarkRequestLocationToJSONTyped(value?: CreateBookmarkRequestLocation | null, ignoreDiscriminator?: boolean): any;