/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { TalentReferralSchemaReferrer } from './TalentReferralSchemaReferrer'; /** * Referral information for the talent * @export * @interface TalentReferralSchema */ export interface TalentReferralSchema { /** * * @type {boolean} * @memberof TalentReferralSchema */ isReferred?: boolean; /** * * @type {string} * @memberof TalentReferralSchema */ referralCode?: string | null; /** * * @type {TalentReferralSchemaReferrer} * @memberof TalentReferralSchema */ referrer?: TalentReferralSchemaReferrer | null; } /** * Check if a given object implements the TalentReferralSchema interface. */ export declare function instanceOfTalentReferralSchema(value: object): value is TalentReferralSchema; export declare function TalentReferralSchemaFromJSON(json: any): TalentReferralSchema; export declare function TalentReferralSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TalentReferralSchema; export declare function TalentReferralSchemaToJSON(json: any): TalentReferralSchema; export declare function TalentReferralSchemaToJSONTyped(value?: TalentReferralSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TalentReferralSchema.d.ts.map