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