/** * 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. */ /** * * @export * @interface VCardSocialLink */ export interface VCardSocialLink { /** * Platform identifier picking the icon. Leave it empty and the API names it * from the URL, which is what you normally want. Known values: appstore, * playstore, instagram, tiktok, twitter, facebook, youtube, linkedin, * github, medium, whatsapp, telegram, discord, slack, spotify, applemusic, * twitch, snapchat, pinterest, reddit, calendly, website. * @type {string} * @memberof VCardSocialLink */ platform?: string; /** * * @type {string} * @memberof VCardSocialLink */ url?: string; } /** * Check if a given object implements the VCardSocialLink interface. */ export declare function instanceOfVCardSocialLink(value: object): value is VCardSocialLink; export declare function VCardSocialLinkFromJSON(json: any): VCardSocialLink; export declare function VCardSocialLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): VCardSocialLink; export declare function VCardSocialLinkToJSON(json: any): VCardSocialLink; export declare function VCardSocialLinkToJSONTyped(value?: VCardSocialLink | null, ignoreDiscriminator?: boolean): any;