/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CreateLinkRequestBodyDataAttributes } from './CreateLinkRequestBodyDataAttributes'; /** * * @export * @interface CreateLinkRequestBodyData */ export interface CreateLinkRequestBodyData { /** * * @type {CreateLinkRequestBodyDataTypeEnum} * @memberof CreateLinkRequestBodyData */ type: CreateLinkRequestBodyDataTypeEnum; /** * * @type {CreateLinkRequestBodyDataAttributes} * @memberof CreateLinkRequestBodyData */ attributes: CreateLinkRequestBodyDataAttributes; } /** * @export */ export declare const CreateLinkRequestBodyDataTypeEnum: { readonly Links: "links"; }; export type CreateLinkRequestBodyDataTypeEnum = typeof CreateLinkRequestBodyDataTypeEnum[keyof typeof CreateLinkRequestBodyDataTypeEnum]; /** * Check if a given object implements the CreateLinkRequestBodyData interface. */ export declare function instanceOfCreateLinkRequestBodyData(value: object): value is CreateLinkRequestBodyData; export declare function CreateLinkRequestBodyDataFromJSON(json: any): CreateLinkRequestBodyData; export declare function CreateLinkRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateLinkRequestBodyData; export declare function CreateLinkRequestBodyDataToJSON(json: any): CreateLinkRequestBodyData; export declare function CreateLinkRequestBodyDataToJSONTyped(value?: CreateLinkRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateLinkRequestBodyData.d.ts.map