/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export const $Location = {
    properties: {
        iata: {
            type: 'string',
        },
        labels: {
            type: 'array',
            contains: {
                type: 'string',
            },
        },
        name: {
            type: 'string',
            format: 'string',
        },
        object_uuid: {
            type: 'string',
            format: 'uuid',
        },
        country: {
            type: 'string',
            format: 'string',
        },
        active: {
            type: 'boolean',
        },
        change_requested: {
            type: 'LocationChangeRequested',
        },
        cpunode_count: {
            type: 'number',
        },
        public: {
            type: 'boolean',
        },
        product_no: {
            type: 'number',
        },
    },
};