/** * 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. */ /** * * @export * @interface JobAttributesOrganizationAddressSchema */ export interface JobAttributesOrganizationAddressSchema { /** * * @type {string} * @memberof JobAttributesOrganizationAddressSchema */ city?: string; /** * * @type {string} * @memberof JobAttributesOrganizationAddressSchema */ country?: string; /** * * @type {string} * @memberof JobAttributesOrganizationAddressSchema */ county?: string; /** * * @type {string} * @memberof JobAttributesOrganizationAddressSchema */ postalcode?: string; /** * * @type {string} * @memberof JobAttributesOrganizationAddressSchema */ street?: string; } /** * Check if a given object implements the JobAttributesOrganizationAddressSchema interface. */ export declare function instanceOfJobAttributesOrganizationAddressSchema(value: object): value is JobAttributesOrganizationAddressSchema; export declare function JobAttributesOrganizationAddressSchemaFromJSON(json: any): JobAttributesOrganizationAddressSchema; export declare function JobAttributesOrganizationAddressSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobAttributesOrganizationAddressSchema; export declare function JobAttributesOrganizationAddressSchemaToJSON(json: any): JobAttributesOrganizationAddressSchema; export declare function JobAttributesOrganizationAddressSchemaToJSONTyped(value?: JobAttributesOrganizationAddressSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=JobAttributesOrganizationAddressSchema.d.ts.map