/** * 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. */ /** * SocialLinkTraceButton stores metadata for social link buttons. * @export * @interface SocialLinkTraceButton */ export interface SocialLinkTraceButton { /** * * @type {string} * @memberof SocialLinkTraceButton */ id?: string; /** * * @type {number} * @memberof SocialLinkTraceButton */ order?: number; /** * * @type {string} * @memberof SocialLinkTraceButton */ platform?: string; /** * * @type {string} * @memberof SocialLinkTraceButton */ url?: string; } /** * Check if a given object implements the SocialLinkTraceButton interface. */ export declare function instanceOfSocialLinkTraceButton(value: object): value is SocialLinkTraceButton; export declare function SocialLinkTraceButtonFromJSON(json: any): SocialLinkTraceButton; export declare function SocialLinkTraceButtonFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialLinkTraceButton; export declare function SocialLinkTraceButtonToJSON(json: any): SocialLinkTraceButton; export declare function SocialLinkTraceButtonToJSONTyped(value?: SocialLinkTraceButton | null, ignoreDiscriminator?: boolean): any;