/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * 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 SocialLink
 */
export interface SocialLink {
    /**
     * URL of the social link, e.g. https://www.twitter.com/apideck
     * @type {string}
     * @memberof SocialLink
     */
    url: string;
    /**
     * Unique identifier of the social link
     * @type {string}
     * @memberof SocialLink
     */
    id?: string | null;
    /**
     * Type of the social link, e.g. twitter
     * @type {string}
     * @memberof SocialLink
     */
    type?: string | null;
}
export declare function SocialLinkFromJSON(json: any): SocialLink;
export declare function SocialLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): SocialLink;
export declare function SocialLinkToJSON(value?: SocialLink | null): any;
