/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { VCardSocialLink } from './VCardSocialLink'; /** * * @export * @interface VCardData */ export interface VCardData { /** * * @type {string} * @memberof VCardData */ buttonLabel?: string; /** * * @type {string} * @memberof VCardData */ city?: string; /** * * @type {string} * @memberof VCardData */ country?: string; /** * * @type {string} * @memberof VCardData */ email?: string; /** * * @type {string} * @memberof VCardData */ firstName?: string; /** * * @type {string} * @memberof VCardData */ lastName?: string; /** * * @type {string} * @memberof VCardData */ organization?: string; /** * * @type {string} * @memberof VCardData */ phone?: string; /** * * @type {boolean} * @memberof VCardData */ phoneIsWhatsapp?: boolean; /** * * @type {string} * @memberof VCardData */ postalCode?: string; /** * * @type {Array} * @memberof VCardData */ socialLinks?: Array; /** * * @type {string} * @memberof VCardData */ state?: string; /** * * @type {string} * @memberof VCardData */ streetAddress?: string; /** * * @type {string} * @memberof VCardData */ title?: string; /** * * @type {string} * @memberof VCardData */ website?: string; } /** * Check if a given object implements the VCardData interface. */ export declare function instanceOfVCardData(value: object): value is VCardData; export declare function VCardDataFromJSON(json: any): VCardData; export declare function VCardDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): VCardData; export declare function VCardDataToJSON(json: any): VCardData; export declare function VCardDataToJSONTyped(value?: VCardData | null, ignoreDiscriminator?: boolean): any;