UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.2 kB
/** * 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 ApplicantSocialLinks */ export interface ApplicantSocialLinks { /** * URL of the social link, e.g. https://www.twitter.com/apideck * @type {string} * @memberof ApplicantSocialLinks */ url: string; /** * Unique identifier of the social link * @type {string} * @memberof ApplicantSocialLinks */ id?: string | null; /** * Type of the social link, e.g. twitter * @type {string} * @memberof ApplicantSocialLinks */ type?: string | null; } export declare function ApplicantSocialLinksFromJSON(json: any): ApplicantSocialLinks; export declare function ApplicantSocialLinksFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicantSocialLinks; export declare function ApplicantSocialLinksToJSON(value?: ApplicantSocialLinks | null): any;