/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { mapValues } from '../runtime'; import type { RootAlias } from './RootAlias'; import { RootAliasFromJSON, RootAliasFromJSONTyped, RootAliasToJSON, RootAliasToJSONTyped, } from './RootAlias'; /** * Parent resource ID or an alias (the alias is resolved to the actual ID during the request handling). * @export * @interface CreateBookmarkRequestParentId */ export interface CreateBookmarkRequestParentId { } /** * Check if a given object implements the CreateBookmarkRequestParentId interface. */ export function instanceOfCreateBookmarkRequestParentId(value: object): value is CreateBookmarkRequestParentId { return true; } export function CreateBookmarkRequestParentIdFromJSON(json: any): CreateBookmarkRequestParentId { return CreateBookmarkRequestParentIdFromJSONTyped(json, false); } export function CreateBookmarkRequestParentIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBookmarkRequestParentId { return json; } export function CreateBookmarkRequestParentIdToJSON(json: any): CreateBookmarkRequestParentId { return CreateBookmarkRequestParentIdToJSONTyped(json, false); } export function CreateBookmarkRequestParentIdToJSONTyped(value?: CreateBookmarkRequestParentId | null, ignoreDiscriminator: boolean = false): any { return value; }