/** * 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 { JobAttributesOrganizationAddressSchema } from './JobAttributesOrganizationAddressSchema'; /** * Organization details for the job * @export * @interface JobAttributesOrganizationSchema */ export interface JobAttributesOrganizationSchema { /** * * @type {string} * @memberof JobAttributesOrganizationSchema */ name?: string; /** * * @type {JobAttributesOrganizationAddressSchema} * @memberof JobAttributesOrganizationSchema */ address?: JobAttributesOrganizationAddressSchema; } /** * Check if a given object implements the JobAttributesOrganizationSchema interface. */ export declare function instanceOfJobAttributesOrganizationSchema(value: object): value is JobAttributesOrganizationSchema; export declare function JobAttributesOrganizationSchemaFromJSON(json: any): JobAttributesOrganizationSchema; export declare function JobAttributesOrganizationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesOrganizationSchema; export declare function JobAttributesOrganizationSchemaToJSON(json: any): JobAttributesOrganizationSchema; export declare function JobAttributesOrganizationSchemaToJSONTyped(value?: JobAttributesOrganizationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesOrganizationSchema.d.ts.map