/** * 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 BookmarkMetadataBlockAttributes */ export interface BookmarkMetadataBlockAttributes { /** * * @type {string} * @memberof BookmarkMetadataBlockAttributes */ 'pageTitle': string | null; /** * * @type {string} * @memberof BookmarkMetadataBlockAttributes */ 'pageUrl': string | null; } /** * Check if a given object implements the BookmarkMetadataBlockAttributes interface. */ export declare function instanceOfBookmarkMetadataBlockAttributes(value: object): value is BookmarkMetadataBlockAttributes; export declare function BookmarkMetadataBlockAttributesFromJSON(json: any): BookmarkMetadataBlockAttributes; export declare function BookmarkMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): BookmarkMetadataBlockAttributes; export declare function BookmarkMetadataBlockAttributesToJSON(json: any): BookmarkMetadataBlockAttributes; export declare function BookmarkMetadataBlockAttributesToJSONTyped(value?: BookmarkMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;