Prime Management API

API for managing Prime Storage Group's storage facilities.

API Endpoints
https://prime-management.primestoragegroup.app/graphql
Headers
# Your API token from the dashboard. Must be included in all API calls.
Authorization: Bearer your-api-token
Version

1.0.0

API Overview

Welcome to the Prime Management API. This API allows you to manage storage rentals, reservations, and more.

How to Use the Rental API

Rental API Instructions

Overview

The Rental API allows you to create and finalize rentals using GraphQL mutations. This guide explains:

  • How to create a rental
  • How to finalize a rental
  • What happens behind the scenes during each process

1️⃣ Creating a Rental

To create a rental, use the createRental mutation. This process involves:

Tenant Handling

  • Find or Create Tenant:

    • If a tenant ID is provided, the system retrieves the tenant.
    • If tenant details are provided, it attempts to find or create the tenant.
    • Otherwise, a new tenant is created using basic details (first name, last name, email, phone).
  • Location Population:

    • If a locationIdentifier is provided, the system fetches and populates the location details.
  • Sitelink Integration & Elasticsearch:

    • Checks for the tenant in MongoDB and Sitelink, updates if found, and pushes tenant data to Elasticsearch.
  • Ably Notification:

    • A message is sent via the Ably channel to broadcast the tenant creation event.

Reservation Creation

  • Location & Tenant Population:

    • The system retrieves location details and populates tenant information (either provided or newly created).
  • Unit Availability:

    • Verifies unit availability; if the selected unit isn’t available, assigns the next available unit.
  • Expiration Date Setting:

    • Sets the expiration date depending on whether the reservation is an inquiry (15 days) or a standard reservation (72 hours).
  • Sitelink Reservation:

    • Creates the reservation in Sitelink unless bypassed, passing additional parameters like rental type.
  • Elasticsearch & Ably:

    • Pushes the reservation to Elasticsearch and notifies via the Ably channel.

Email & Note Scheduling

  • Waiting List or Reservation Notification:
    • If it’s a join waiting list, schedules a waiting list email (scheduleWaitingListEmail) and a reservation note (scheduleReservationNote).
    • Otherwise, schedules a reservation email (scheduleReservationEmail) along with a corresponding note.

Mutation Example

mutation createRental($input: CreateRentalInput!) {
  createRental(input: $input) {
    tenant {
      id
      firstName
      lastName
      email
      phone
    }
    reservation {
      id
      neededAt
      reservationStatus
      sitelinkId
      quotedRate
    }
  }
}

VARIABLES

{
  "input": {
    "tenant": {
      "company": "",
      "isCompany": false,
      "firstName": "Russell",
      "lastName": "Jones",
      "email": "test+1@test.com",
      "address": "",
      "address2": "",
      "city": "",
      "region": "",
      "postalCode": "",
      "country": "",
      "phone": "(123) 123-1231",
      "mobilePhone": ""
    },
    "neededAt": "2025-03-11T04:00:00.000Z",
    "quotedRate": 75,
    "reservationType": "LEAD",
    "locationIdentifier": "LPLANETSETUP",
    "unitId": "679189d7d02039930c155e7c",
    "concessionId": -999,
    "insuranceId": -999
  }
}

Payload Example:

{
  "data": {
    "createRental": {
      "reservation": {
        "id": "67d037a752befe01f323769e",
        "reservationSource": null,
        "reservationStatus": "ACTIVE",
        "reservationType": null,
        "sitelinkId": "2191625",
        "unit": {
          "id": "679189d7d02039930c155e7c",
          "sitelinkId": "162195"
        }
      },
      "tenant": {
        "id": "6797c2402cb24b5fec192b12",
        "sitelinkId": "2862485"
      }
    }
  }
}

Required Fields for Lead Creation

Field Required? Description
locationIdentifier Yes The location where the lead is created.
reservationStatus Yes Should be ACTIVE for new leads.
reservationType Yes Must be set to LEAD.
reservationSource Yes Specifies the source of the lead (e.g., WEB).
neededAt Yes Timestamp for when the lead is needed.
tenant.firstName Yes Lead’s first name.
tenant.lastName Yes Lead’s last name.
tenant.email Yes Lead’s email address.
unitId Yes The ID of the selected unit size.
phone No Optional phone number.

2️⃣ Finalizing a Rental

To finalize a rental, use the finalizeRental mutation. This process includes:

Location Retrieval

  • The location is fetched using the provided locationIdentifier.

Move-In Creation

Data Gathering

  • Concurrently retrieves details for the unit, tenant, location, and reservation.

Move-In Record Creation

  • Sets the move-in start date and calculates an end date (defaults to one month later if not provided).
  • Calls Sitelink’s createMoveIn, which serializes the input, calls the API (MoveInWithDiscount_v5), and deserializes the response.

Proof of Insurance (Optional)

  • If proof of insurance is provided, it is sent to Sitelink with details like insurer name and provider phone.

Reservation Update

  • Re-imports the original reservation to update its state based on the move-in.

Background CRON Job Scheduling

Tenant Update

  • Schedules a CRON job (scheduleUpdateTenant) to update tenant details after 30 seconds.

Tenant Billing Update

  • Schedules another CRON job (scheduleUpdateTenantBilling) to update tenant billing information after 30 seconds.

Mutation Example

mutation {
  finalizeRental(input: $finalizeRentalInput) {
    leaseNumber
    ledgerId
    reservation {
      id
      neededAt
    }
  }
}

VARIABLES

{
  "finalizeRentalInput": {
    "locationIdentifier": "LPLANETSETUP",
    "tenantId": "6797c2402cb24b5fec192b12",
    "unitId": "679189d7d02039930c155e7c",
    "concessionId": 0,
    "insuranceId": -999,
    "paymentAmount": 75.0,
    "reservationId": "67d037a752befe01f323769e",
    "moveInDate": "2025-03-11T04:00:00.000Z",
    "creditCardType": "Visa",
    "creditCardNumber": "4111 1111 1111 1111",
    "expirationDate": "12/26",
    "creditCardCVV": "123",
    "billingName": "Russell Jones",
    "billingAddress": "123 Main St",
    "billingZipCode": "12345",
    "autoBillType": "CreditCard"
  }
}

RESPONSE

{
  "data": {
    "finalizeRental": {
      "leaseNumber": 713,
      "ledgerId": 1852539,
      "reservation": {
        "id": "67d037a752befe01f323769e",
        "neededAt": "2025-03-11T04:00:00.000Z"
      }
    }
  }
}

Required fields

Field Required? Description
locationIdentifier Yes The location where the rental is finalized.
tenantId Yes The ID of the tenant.
reservationId Yes The ID of the reservation.
moveInDate Yes Date of move-in.
creditCardType Yes Type of credit card (VISA, MASTERCARD, etc.).
creditCardNumber Yes Credit card number for payment.
expirationDate Yes Credit card expiration date (MM/YY).
creditCardCVV Yes CVV code for credit card verification.
isEnableAutopay Yes Whether autopay should be enabled.
paymentAmount Yes Amount being charged.
leaseNumber Yes Generated lease number after rental finalization.
billingName No Name on the billing information.
insuranceId No ID of the selected insurance plan.
concessionId No Discount applied to rental.

3️⃣ Behind the Scenes

Tenant Service

  • Tenant Creation & Update:
    • Populates location details if locationIdentifier is provided.
    • Checks for an existing tenant in MongoDB and Sitelink; updates if found or creates a new tenant if not.
  • Sitelink Integration:
    • Imports or creates the tenant in Sitelink and attaches Sitelink-specific attributes.
  • Elasticsearch & Ably:
    • Pushes tenant data to Elasticsearch and sends an update message via the Ably channel.

Reservation Service

  • Reservation Creation:
    • Retrieves and sets location and tenant details.
    • Checks unit availability and sets expiration dates.
    • Integrates with Sitelink to create a reservation and enriches the reservation data.
  • Notifications:
    • Pushes reservation data to Elasticsearch and sends notifications via Ably.
  • Email & Note Scheduling:
    • Waiting List: Schedules waiting list emails and notes when applicable.
    • Standard Reservation: Schedules reservation emails and logs a reservation note.

Email & Note Scheduling Functions

  • Mailing List:
    • scheduleWaitingListEmail enqueues a job to send a waiting list email (no delay, 3 retries).
  • Reservation Email:
    • scheduleReservationEmail enqueues a job to send a reservation confirmation email.
  • Reservation Note:
    • scheduleReservationNote enqueues a job to log a reservation note.
  • Move-In Bulletin & Emails:
    • After move-in creation, a bulletin is scheduled (scheduleMoveInBulletin) and both rental (scheduleRentalEmail) and move-in emails (scheduleMoveInEmail) are sent.
  • Tenant Note:
    • scheduleTenantNote logs a tenant note for the move-in event.

Move-In Process

  • Create Move-In:
    • Fetches unit, tenant, location, and reservation concurrently.
    • Sets the end date (defaults to one month later if not provided).
    • Invokes Sitelink’s createMoveIn (serializing input, API call, deserializing response).
  • Post Move-In Actions:
    • Schedules a move-in bulletin, rental email, move-in email, and a tenant note to record the event.

Background CRON Scheduling

  • Tenant Update:
    • scheduleUpdateTenant creates a CRON job that updates tenant information after 30 seconds.
  • Tenant Billing Update:
    • scheduleUpdateTenantBilling creates a CRON job that updates tenant billing information after 30 seconds.
  • Job Identification:
    • Each job is assigned a unique identifier using the current timestamp and a UUID.

How to Use the Reservation API

Reservation API Instructions

Overview

The Reservation API provides functionality for creating, updating, retrieving, and deleting reservations. This document provides step-by-step instructions for creating a reservation.


1️⃣ Creating a Reservation

When creating a reservation, the system performs the following steps:

Step 1: Populate Location

  • If a locationIdentifier is provided:
    • The system fetches the corresponding location details using LocationsService.findByIdentifier.
    • The fetched location is then added to the reservation input.

Step 2: Populate Tenant

  • If a tenantId is provided:
    • The system retrieves tenant details using TenantsService.findOne.
  • If no tenant is provided:
    • A new tenant is created using basic tenant details (first name, last name, email, phone, and company) via TenantsService.create.

Step 3: Verify Unit Availability

  • If Sitelink integration is enabled (i.e. options?.bypassSitelink is not true):
    • The system checks unit availability using UnitsService.availability with the provided locationIdentifier and unitId.
    • Unit Assignment:
      • If the selected unit isn’t available and there is an alternative (i.e. nextAvailableUnit exists), the alternative unit is assigned.
      • If no available unit is found, an error is thrown.

Step 4: Populate Unit

  • If a unitId is provided and the unit is not yet populated:
    • The system retrieves the unit details using UnitsService.findOne.

Step 5: Set Reservation Expiration

  • The expiration date is determined based on whether the reservation is an inquiry:
    • Inquiry: Expiration is set to 15 days from the start date.
    • Standard Reservation: Expiration is set to 72 hours from the start date.
  • The calculation is performed using the dayjs library.
  • If Sitelink integration is enabled:
    • The reservation is pushed to Sitelink using SitelinkService.createReservation.
    • Required parameters such as locationIdentifier, sitelinkTenantId, sitelinkUnitId, and rentalType are passed.

Step 7: Create Reservation in MongoDB

  • The reservation is created using the Mongoose model’s create method.
  • The input data is merged with Sitelink attributes (if available) and saved.
  • After creation, the reservation document is populated with related fields (i.e. location, tenant, and unit).

Step 8: Error Handling

  • If the reservation is not successfully created, an error is thrown.

Step 9: Push Reservation to Elasticsearch

  • The created reservation is indexed in Elasticsearch using ElasticsearchService.update.
  • Any errors during this process are caught and logged (with plans to forward them to Sentry).

Step 10: Push Notification via Ably

  • A notification message is sent via the Ably channel using AblySchedulingService.scheduleSendMessage to inform other systems of the new reservation.

Step 11: Email and Note Scheduling

  • If Sitelink integration is enabled:
    • Waiting List Scenario:
      • If isJoinWaitingList is true, a waiting list email is scheduled using EmailsSchedulingService.scheduleWaitingListEmail.
      • A corresponding reservation note is added via NotesSchedulingService.scheduleReservationNote.
    • Standard Reservation:
      • If a valid neededAt date is provided and neither isJoinWaitingList nor isInquiry is true, a reservation email is scheduled using EmailsSchedulingService.scheduleReservationEmail.
      • A reservation note is then added.

Step 12: Return Created Reservation

  • The final created reservation is returned as the output of the API call.

Example Mutation

Below is an example GraphQL mutation for creating a reservation:

mutation createReservation($createReservationInput: CreateReservationInput!) {
  createReservation(input: $createReservationInput) {
    id
    sitelinkId
    tenant {
      id
      firstName
      lastName
    }
    location {
      id
      identifier
      name
    }
    unit {
      id
      name
    }
  }
}

VARIABLES

{
  "createReservationInput": {
    "locationIdentifier": "LPLANETSETUP",
    "tenantId": null,
    "unitId": "679ac18058e808bfa19f7511",
    "concessionId": 42182,
    "quotedRate": 86.87,
    "firstName": "Russell",
    "lastName": "Jones",
    "phone": "(123) 123-1231",
    "email": "test+1@test.com",
    "neededAt": "2025-03-11T15:44:10.510Z",
    "isActiveMilitary": false,
    "company": "",
    "isJoinWaitingList": false
  }
}

RESPONSE

{
  "data": {
    "createReservation": {
      "id": "67d037a752befe01f323769e",
      "sitelinkId": "2191625",
      "tenant": {
        "id": "6797c2402cb24b5fec192b12",
        "firstName": "Russell",
        "lastName": "Jones"
      },
      "location": {
        "id": "6791849148f7fd5b4adff35c",
        "identifier": "LPLANETSETUP",
        "name": "Prime Storage - TESTING"
      },
      "unit": {
        "id": "679ac18058e808bfa19f7511",
        "name": "Unit A1"
      }
    }
  }
}

Summary of Steps

  1. Populate Location: Retrieve location details using the provided locationIdentifier.
  2. Populate Tenant: Retrieve an existing tenant or create a new one using the provided tenant details.
  3. Verify Unit Availability: Ensure the selected unit is available, or assign the next available unit.
  4. Populate Unit: Fetch unit details if not already populated.
  5. Set Reservation Expiration: Determine the expiration date based on inquiry status.
  6. Push to Sitelink: Integrate with Sitelink to create a reservation record.
  7. Create Reservation in MongoDB: Save the reservation document with related fields.
  8. Error Handling: Throw errors if reservation creation fails.
  9. Index in Elasticsearch: Push reservation data to Elasticsearch.
  10. Notify via Ably: Send a notification message for the new reservation.
  11. Email and Note Scheduling: Schedule emails and notes based on reservation type.
  12. Return Reservation: Output the created reservation object.
  13. Update Reservation: Populate updated fields, push update to Sitelink, update MongoDB, re-index in Elasticsearch, and send notifications via Ably.
  14. Remove Reservation: Delete from MongoDB, remove from Elasticsearch, and notify via Ably.
  15. Import Reservations: Fetch locations, set reporting times, process each location and its reservations, and import reservation details from Sitelink.

2️⃣ Updating a Reservation

When updating a reservation, the system performs the following steps:

Step 1: Populate Updated Fields

  • Location: If locationIdentifier is provided in the update input, the location is re-fetched using LocationsService.findByIdentifier.
  • Tenant: If tenantId is provided, tenant details are re-fetched using TenantsService.findOne.
  • Unit: If unitId is provided, unit details are re-fetched using UnitsService.findOne.
  • If Sitelink integration is enabled: The reservation update is sent to Sitelink using SitelinkService.updateReservation. Relevant parameters such as locationIdentifier, sitelinkReservationId, sitelinkTenantId, and sitelinkUnitId are included.

Step 3: Update Reservation in MongoDB

  • The reservation is updated using Mongoose’s findByIdAndUpdate with the new input data.
  • The updated document is populated with related fields (location, tenant, and unit).

Step 4: Push Update to Elasticsearch

  • The updated reservation is re-indexed in Elasticsearch using ElasticsearchService.update.

Step 5: Push Notification via Ably

  • A notification about the update is sent using AblySchedulingService.scheduleSendMessage.

Example Mutation for Updating a Reservation

mutation updateReservation(
  $id: ID!
  $updateReservationInput: UpdateReservationInput!
) {
  updateReservation(id: $id, input: $updateReservationInput) {
    id
    reservationStatus
    sitelinkId
    tenant {
      id
      firstName
      lastName
    }
    location {
      id
      identifier
      name
    }
    unit {
      id
      name
    }
  }
}

VARIABLES

{
  "id": "67c65ea6daed933671a4e2a0",
  "updateReservationInput": {
    "unitId": "679189d6d02039930e42591e",
    "neededAt": "2025-04-01T00:00:00.000Z"
  }
}

RESPONSE

{
  "data": {
    "updateReservation": {
      "id": "67c65ea6daed933671a4e2a0",
      "reservationStatus": "ACTIVE",
      "sitelinkId": "2187906",
      "tenant": {
        "id": "6797c2402cb24b5fec192b12",
        "firstName": "Russell",
        "lastName": "Jones"
      },
      "location": {
        "id": "6791849148f7fd5b4adff35c",
        "identifier": "LPLANETSETUP",
        "name": "Prime Storage - TESTING"
      },
      "unit": {
        "id": "679189d6d02039930e42591e",
        "name": "Unit B2"
      }
    }
  }
}

3️⃣ Removing a Reservation

When removing a reservation, the following steps are executed:

Step 1: Delete Reservation from MongoDB

  • The reservation is removed using Mongoose’s findByIdAndDelete.

Step 2: Remove Reservation from Elasticsearch

  • The reservation is deleted from Elasticsearch using ElasticsearchService.base.delete.

Step 3: Push Notification via Ably

  • A notification about the removal is sent using AblySchedulingService.scheduleSendMessage.

Example Mutation for Removing a Reservation

mutation removeReservation($id: ID!) {
  removeReservation(id: $id) {
    id
    reservationStatus
  }
}

VARIABLES

{
  "id": "67c65ea6daed933671a4e2a0"
}

RESPONSE

{
  "data": {
    "removeReservation": {
      "id": "67c65ea6daed933671a4e2a0",
      "reservationStatus": "CANCELLED"
    }
  }
}

4️⃣ Importing Reservations

The system can import reservations from Sitelink. This process includes:

Step 1: Fetch Locations

  • All locations are retrieved from MongoDB using LocationsService.findAllMongo.

Step 2: Set Reporting Times

  • Reporting times (reportDateStart and reportDateEnd) are determined based on the current day or provided start/end dates.

Step 3: Process Each Location

  • For each location (excluding those with a specific annexPrefix):
    • The system fetches all reservations from Sitelink using SitelinkService.getAllReservations.
    • For each reservation:
      • Fetch Reservation Notes:
        Reservation notes are fetched via SitelinkService.getAllReservationNotes.
      • Import Unit:
        The unit is imported using UnitsService.importOne.
      • Import Tenant:
        The tenant is imported using TenantsService.importOne.
      • Import Reservation:
        The reservation is imported (or updated) using createOrUpdateBySitelinkId, merging data from Sitelink with the local database.
  • Any errors encountered during this process are logged and captured by Sentry.

Example Flow for Importing Reservations

Note: There isn’t a direct mutation for importing reservations. Instead, the process is triggered by backend jobs that call the import functions (such as importOne and import).

5️⃣ Steps

Create A New Lead

  • Create a new lead using the "New Lead" button in the header.
  • Fill out the first name, last name, email address and select the unit to rent.
  • GraphQL example:
    mutation createRental($input: CreateRentalInput!) {
      createRental(input: $input) {
        tenant {
          id
          firstName
          lastName
          email
          phone
        }
        reservation {
          id
          neededAt
          reservationStatus
          sitelinkId
          quotedRate
        }
      }
    }
    

VARIABLES

{
  "input": {
    "tenant": {
      "company": "",
      "isCompany": false,
      "firstName": "Russell",
      "lastName": "Jones",
      "email": "test+1@test.com",
      "address": "",
      "address2": "",
      "city": "",
      "region": "",
      "postalCode": "",
      "country": "",
      "phone": "(123) 123-1231",
      "mobilePhone": ""
    },
    "neededAt": "2025-03-11T04:00:00.000Z",
    "quotedRate": 75,
    "reservationType": "LEAD",
    "locationIdentifier": "LPLANETSETUP",
    "unitId": "679189d7d02039930c155e7c",
    "concessionId": -999,
    "insuranceId": -999
  }
}

Payload Example:

{
  "data": {
    "createRental": {
      "reservation": {
        "id": "67d037a752befe01f323769e",
        "reservationSource": null,
        "reservationStatus": "ACTIVE",
        "reservationType": null,
        "sitelinkId": "2191625",
        "unit": {
          "id": "679189d7d02039930c155e7c",
          "sitelinkId": "162195"
        }
      },
      "tenant": {
        "id": "6797c2402cb24b5fec192b12",
        "sitelinkId": "2862485"
      }
    }
  }
}

Required Fields for Lead Creation

Field Required? Description
locationIdentifier Yes The location where the lead is created.
reservationStatus Yes Should be ACTIVE for new leads.
reservationType Yes Must be set to LEAD.
reservationSource Yes Specifies the source of the lead (e.g., WEB).
neededAt Yes Timestamp for when the lead is needed.
tenant.firstName Yes Lead’s first name.
tenant.lastName Yes Lead’s last name.
tenant.email Yes Lead’s email address.
unitId Yes The ID of the selected unit size.
phone No Optional phone number.

Complete Move-In

  • Trigger the Move-In process using the "Move-In" button in the header.

  • Fill out the payment details

    Field Required? Description
    creditCardNumber Yes Valid credit card number (13-19 digits).
    expirationDate Yes Expiration Date (MM/YY format).
    creditCardCVV Yes CVV (3-4 digits, must be numeric).
    isEnableAutopay Yes Enable autopay (boolean).
    address Yes Billing Address.
    city Yes Billing City.
    region Yes Billing State/Province.
    postalCode Yes Billing Zip/Postal Code.
    billingName Yes Name on credit card.
    insuranceId Yes Needed for the final rental payment.
    concessionId Yes Required for discount handling.
    paymentAmount Yes Amount being charged.
  • GraphQL example:

    mutation {
      finalizeRental(
        input: {
          "locationIdentifier": "LPLANETSETUP",
          "tenantId": "6797c2402cb24b5fec192b12",
          "unitId": "679189d7d02039930c155e7c",
          "concessionId": 0,
          "insuranceId": -999,
          "paymentAmount": 75.00,
          "reservationId": "67d037a752befe01f323769e",
          "moveInDate": "2025-03-11T04:00:00.000Z",
          "creditCardType": "Visa",
          "creditCardNumber": "4111 1111 1111 1111",
          "expirationDate": "12/26",
          "creditCardCVV": "123",
          "billingName": "Russell Jones",
          "billingAddress": "123 Main St",
          "billingZipCode": "12345",
          "autoBillType": "CreditCard"
        }
      ) {
        leaseNumber
        ledgerId
        reservation {
          id
          neededAt
        }
      }
    }
    

Queries

adType

Response

Returns an AdType!

Arguments
Name Description
id - ID!

Example

Query
query adType($id: ID!) {
  adType(id: $id) {
    id
    name
    createdAt
    updatedAt
  }
}
Variables
{"id": 4}
Response
{
  "data": {
    "adType": {
      "id": "4",
      "name": "abc123",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

adTypes

Response

Returns an AdTypeResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search

Example

Query
query adTypes(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String
) {
  adTypes(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search
  ) {
    total
    adTypes {
      id
      name
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "from": 123,
  "size": 987,
  "sort": "ASC",
  "sortBy": "xyz789",
  "search": "xyz789"
}
Response
{"data": {"adTypes": {"total": 123, "adTypes": [AdType]}}}

availableEngrainUnitsByGroupTags

Response

Returns [UnitWithEngrain!]!

Arguments
Name Description
locationIdentifier - String!
unitId - ID!

Example

Query
query availableEngrainUnitsByGroupTags(
  $locationIdentifier: String!,
  $unitId: ID!
) {
  availableEngrainUnitsByGroupTags(
    locationIdentifier: $locationIdentifier,
    unitId: $unitId
  ) {
    id
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    style
    displayStyle
    name
    size
    sizeGroup
    floor
    floorName
    width
    length
    height
    area
    basePrice
    price
    tier
    displayTier
    isAvailable
    groupTags
    createdAt
    updatedAt
    sitelinkId
    sitelinkAttributes {
      retCode
      unitTypeId
      typeName
      defLeaseNum
      sitelinkUnitId
      unitName
      width
      length
      climate
      stdRate
      rented
      inside
      power
      alarm
      floor
      waitingListReserved
      movedOut
      corporate
      rentable
      deleted
      boardRate
      unitNote
      pushRate
      tax1Rate
      tax2Rate
      unitDesc
      stdWeeklyRate
      mapTop
      mapLeft
      mapTheta
      mapReversWL
      entryLoc
      doorType
      ada
      stdSecDep
      mobile
      siteId
      locationIdentifier
      pushRateNotRounded
      rmRoundTo
      serviceRequired
      daysVacant
      excludeFromWebsite
      defaultCoverageId
      webRate
      preferredRate
      preferredChannelType
      preferredIsPushRate
    }
    lock {
      id
      name
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      keys {
        id
        userType
        createdAt
        updatedAt
      }
      isSetup
      createdAt
      updatedAt
    }
    engrainUnitId
    engrainFloorId
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "unitId": 4
}
Response
{
  "data": {
    "availableEngrainUnitsByGroupTags": [
      {
        "id": "4",
        "location": Location,
        "tenant": Tenant,
        "style": "STANDARD",
        "displayStyle": "xyz789",
        "name": "abc123",
        "size": "abc123",
        "sizeGroup": "UNKNOWN",
        "floor": 123,
        "floorName": "abc123",
        "width": 123.45,
        "length": 987.65,
        "height": 123.45,
        "area": 987.65,
        "basePrice": 987.65,
        "price": 123.45,
        "tier": "STANDARD",
        "displayTier": "abc123",
        "isAvailable": true,
        "groupTags": ["abc123"],
        "createdAt": "2007-12-03",
        "updatedAt": "2007-12-03",
        "sitelinkId": "xyz789",
        "sitelinkAttributes": SitelinkUnit,
        "lock": Lock,
        "engrainUnitId": "xyz789",
        "engrainFloorId": "abc123"
      }
    ]
  }
}

availableUnitsByGroupTags

Response

Returns [Unit!]!

Arguments
Name Description
locationIdentifier - String!
unitId - ID!

Example

Query
query availableUnitsByGroupTags(
  $locationIdentifier: String!,
  $unitId: ID!
) {
  availableUnitsByGroupTags(
    locationIdentifier: $locationIdentifier,
    unitId: $unitId
  ) {
    id
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    style
    displayStyle
    name
    size
    sizeGroup
    floor
    floorName
    width
    length
    height
    area
    basePrice
    price
    tier
    displayTier
    isAvailable
    groupTags
    createdAt
    updatedAt
    sitelinkId
    sitelinkAttributes {
      retCode
      unitTypeId
      typeName
      defLeaseNum
      sitelinkUnitId
      unitName
      width
      length
      climate
      stdRate
      rented
      inside
      power
      alarm
      floor
      waitingListReserved
      movedOut
      corporate
      rentable
      deleted
      boardRate
      unitNote
      pushRate
      tax1Rate
      tax2Rate
      unitDesc
      stdWeeklyRate
      mapTop
      mapLeft
      mapTheta
      mapReversWL
      entryLoc
      doorType
      ada
      stdSecDep
      mobile
      siteId
      locationIdentifier
      pushRateNotRounded
      rmRoundTo
      serviceRequired
      daysVacant
      excludeFromWebsite
      defaultCoverageId
      webRate
      preferredRate
      preferredChannelType
      preferredIsPushRate
    }
    lock {
      id
      name
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      keys {
        id
        userType
        createdAt
        updatedAt
      }
      isSetup
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "unitId": "4"
}
Response
{
  "data": {
    "availableUnitsByGroupTags": [
      {
        "id": 4,
        "location": Location,
        "tenant": Tenant,
        "style": "STANDARD",
        "displayStyle": "abc123",
        "name": "xyz789",
        "size": "xyz789",
        "sizeGroup": "UNKNOWN",
        "floor": 987,
        "floorName": "xyz789",
        "width": 987.65,
        "length": 123.45,
        "height": 123.45,
        "area": 987.65,
        "basePrice": 123.45,
        "price": 123.45,
        "tier": "STANDARD",
        "displayTier": "xyz789",
        "isAvailable": false,
        "groupTags": ["xyz789"],
        "createdAt": "2007-12-03",
        "updatedAt": "2007-12-03",
        "sitelinkId": "abc123",
        "sitelinkAttributes": SitelinkUnit,
        "lock": Lock
      }
    ]
  }
}

blacklistedTokens

Description

Get all blacklisted tokens (admin only)

Response

Returns [BlacklistedToken!]!

Arguments
Name Description
limit - Float! Default = 100

Example

Query
query blacklistedTokens($limit: Float!) {
  blacklistedTokens(limit: $limit) {
    id
    jti
    tokenHash
    expiresAt
    reason
    createdAt
    updatedAt
  }
}
Variables
{"limit": 100}
Response
{
  "data": {
    "blacklistedTokens": [
      {
        "id": 4,
        "jti": "xyz789",
        "tokenHash": "abc123",
        "expiresAt": "2007-12-03",
        "reason": "abc123",
        "createdAt": "2007-12-03",
        "updatedAt": "2007-12-03"
      }
    ]
  }
}

cancellationReason

Response

Returns a CancellationReason!

Arguments
Name Description
id - ID!

Example

Query
query cancellationReason($id: ID!) {
  cancellationReason(id: $id) {
    id
    name
    description
    createdAt
    updatedAt
  }
}
Variables
{"id": 4}
Response
{
  "data": {
    "cancellationReason": {
      "id": 4,
      "name": "xyz789",
      "description": "abc123",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

cancellationReasons

Response

Returns a CancellationReasonResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search

Example

Query
query cancellationReasons(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String
) {
  cancellationReasons(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search
  ) {
    total
    cancellationReasons {
      id
      name
      description
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "from": 123,
  "size": 123,
  "sort": "ASC",
  "sortBy": "abc123",
  "search": "abc123"
}
Response
{
  "data": {
    "cancellationReasons": {
      "total": 123,
      "cancellationReasons": [CancellationReason]
    }
  }
}

charges

Response

Returns a Charges!

Arguments
Name Description
locationIdentifier - String! Location identifier
prepay - Int Number of months to prepay. Default = 0
tenantId - String! Tenant ID
unitId - String Unit ID

Example

Query
query charges(
  $locationIdentifier: String!,
  $prepay: Int,
  $tenantId: String!,
  $unitId: String
) {
  charges(
    locationIdentifier: $locationIdentifier,
    prepay: $prepay,
    tenantId: $tenantId,
    unitId: $unitId
  ) {
    items {
      name
      startDate
      endDate
      cost
      tax
      discount
      total
      sitelinkAttributes {
        unitId
        ledgerId
        chargeId
        chargeDescId
        insuranceLedgerId
        fiscalId
        discountMemoId
        discountMemo
        discountAmount
        achNumber
        concessionId
        defaultAccountCode
        startDate
        endDate
        createdDate
        description
        chargeCategory
        amount
        tax1
        tax2
        balance
        payment
        credit
        creditBase
        creditToApplyExisting
        creditToWaiveCurrentLateFee
        creditToWaiveUnowed
        creditForProrata
        creditForSecurityDeposit
        creditFromRefundedRent
        creditFromRefundedRecurring
        creditFromRefundedInsurance
        creditFromRefundedCredits
        creditFromPrepayment
        pastPaymentSumTotal
        pastPaymentSumByCredit
        quantity
        standardPrice
        price
        priceTax1
        priceTax2
        cost
        isMoveIn
        isMoveOut
        isNewCharge
        isNewPOS
        isCurrentLateFee
        isDeleted
        isUpdated
        isBadDebtWaived
        creditTagId
        note
        invoiceNumber
        isNSFCharge
        paymentSumNSF
        paymentSumByCreditNSF
        paymentSumByTransferCreditNSF
        qtChargeId
        promoGlobalNumber
        standardRateReference
        prorataReference
        zipCodeFrom
        zipCodeTo
        zipCodePriceId
        distance
        distanceExcess
        distanceExcessChargeAmount
        mileageRate
        qtTouchDiscItemId
        editIdentifier
        period
        nsfFlag
      }
    }
    subtotal
    discount
    discountName
    tax
    total
  }
}
Variables
{
  "locationIdentifier": "xyz789",
  "prepay": 0,
  "tenantId": "xyz789",
  "unitId": "abc123"
}
Response
{
  "data": {
    "charges": {
      "items": [Charge],
      "subtotal": 123.45,
      "discount": 987.65,
      "discountName": "xyz789",
      "tax": 987.65,
      "total": 987.65
    }
  }
}

checkTokenStatus

Description

Check if a token is blacklisted (admin only)

Response

Returns a TokenStatus!

Arguments
Name Description
checkTokenInput - CheckTokenInput!

Example

Query
query checkTokenStatus($checkTokenInput: CheckTokenInput!) {
  checkTokenStatus(checkTokenInput: $checkTokenInput) {
    isBlacklisted
    jti
    reason
    blacklistedAt
    expiresAt
    isValidFormat
  }
}
Variables
{"checkTokenInput": CheckTokenInput}
Response
{
  "data": {
    "checkTokenStatus": {
      "isBlacklisted": true,
      "jti": "xyz789",
      "reason": "xyz789",
      "blacklistedAt": "2007-12-03",
      "expiresAt": "2007-12-03",
      "isValidFormat": false
    }
  }
}

decodeBulkLocationCredentials

Description

Decode and validate bulk location credentials with HMAC verification

Response

Returns a String!

Arguments
Name Description
sessionToken - String!
bulkCredentials - String!
bulkSignature - String!

Example

Query
query decodeBulkLocationCredentials(
  $sessionToken: String!,
  $bulkCredentials: String!,
  $bulkSignature: String!
) {
  decodeBulkLocationCredentials(
    sessionToken: $sessionToken,
    bulkCredentials: $bulkCredentials,
    bulkSignature: $bulkSignature
  )
}
Variables
{
  "sessionToken": "xyz789",
  "bulkCredentials": "abc123",
  "bulkSignature": "xyz789"
}
Response
{
  "data": {
    "decodeBulkLocationCredentials": "abc123"
  }
}

decodeLocationLockAccessToken

Description

Decode and validate a location lock access JWT token

Response

Returns a String!

Arguments
Name Description
locationAccessToken - String!

Example

Query
query decodeLocationLockAccessToken($locationAccessToken: String!) {
  decodeLocationLockAccessToken(locationAccessToken: $locationAccessToken)
}
Variables
{"locationAccessToken": "xyz789"}
Response
{
  "data": {
    "decodeLocationLockAccessToken": "xyz789"
  }
}

decodeLockAccessToken

Description

Decode and validate a lock access JWT token

Response

Returns a String!

Arguments
Name Description
lockAccessToken - String!

Example

Query
query decodeLockAccessToken($lockAccessToken: String!) {
  decodeLockAccessToken(lockAccessToken: $lockAccessToken)
}
Variables
{"lockAccessToken": "abc123"}
Response
{
  "data": {
    "decodeLockAccessToken": "abc123"
  }
}

dispositionReason

Response

Returns a DispositionReason!

Arguments
Name Description
id - ID!

Example

Query
query dispositionReason($id: ID!) {
  dispositionReason(id: $id) {
    id
    name
    createdAt
    updatedAt
  }
}
Variables
{"id": "4"}
Response
{
  "data": {
    "dispositionReason": {
      "id": 4,
      "name": "xyz789",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

dispositionReasons

Response

Returns a DispositionReasonResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search

Example

Query
query dispositionReasons(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String
) {
  dispositionReasons(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search
  ) {
    total
    dispositionReasons {
      id
      name
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "from": 987,
  "size": 123,
  "sort": "ASC",
  "sortBy": "abc123",
  "search": "xyz789"
}
Response
{
  "data": {
    "dispositionReasons": {
      "total": 123,
      "dispositionReasons": [DispositionReason]
    }
  }
}

documents

Response

Returns [SitelinkDocument!]!

Arguments
Name Description
locationCode - String!
tenantId - String!
onlyUnsigned - Boolean
showNullDocuments - Boolean Default = false

Example

Query
query documents(
  $locationCode: String!,
  $tenantId: String!,
  $onlyUnsigned: Boolean,
  $showNullDocuments: Boolean
) {
  documents(
    locationCode: $locationCode,
    tenantId: $tenantId,
    onlyUnsigned: $onlyUnsigned,
    showNullDocuments: $showNullDocuments
  ) {
    documentId
    siteId
    employeeId
    ledgerId
    formId
    providerId
    envelopeId
    clientUserId
    createdDate
    updatedDate
    deletedDate
    timestampData
    oldPk
    corpUserId
    sitelinkTenantId
    sitelinkReservationId
    sourceId
    docTypeId
    signatureCertificateId
    subDirectory
    envelopeHash
    statusTypeId
    envelopeStatus
    envelopeStatusDate
    uploadedToCloudDate
    receiptId
    formName
    isSigned
  }
}
Variables
{
  "locationCode": "xyz789",
  "tenantId": "abc123",
  "onlyUnsigned": false,
  "showNullDocuments": false
}
Response
{
  "data": {
    "documents": [
      {
        "documentId": 987,
        "siteId": 987,
        "employeeId": 123,
        "ledgerId": 987,
        "formId": 123,
        "providerId": 987,
        "envelopeId": "xyz789",
        "clientUserId": "xyz789",
        "createdDate": "2007-12-03",
        "updatedDate": "2007-12-03",
        "deletedDate": "2007-12-03",
        "timestampData": "abc123",
        "oldPk": 123,
        "corpUserId": 123,
        "sitelinkTenantId": 987,
        "sitelinkReservationId": 987,
        "sourceId": 123,
        "docTypeId": 987,
        "signatureCertificateId": "abc123",
        "subDirectory": "xyz789",
        "envelopeHash": "abc123",
        "statusTypeId": 987,
        "envelopeStatus": "AWAITING_TENANT_SIGNATURE",
        "envelopeStatusDate": "2007-12-03",
        "uploadedToCloudDate": "2007-12-03",
        "receiptId": 123,
        "formName": "abc123",
        "isSigned": false
      }
    ]
  }
}

eSignStatus

Response

Returns a SitelinkDocument!

Arguments
Name Description
locationIdentifier - String! Location identifier
ledgerId - Int Ledger ID
formId - String Form ID
tenantId - String! Tenant ID

Example

Query
query eSignStatus(
  $locationIdentifier: String!,
  $ledgerId: Int,
  $formId: String,
  $tenantId: String!
) {
  eSignStatus(
    locationIdentifier: $locationIdentifier,
    ledgerId: $ledgerId,
    formId: $formId,
    tenantId: $tenantId
  ) {
    documentId
    siteId
    employeeId
    ledgerId
    formId
    providerId
    envelopeId
    clientUserId
    createdDate
    updatedDate
    deletedDate
    timestampData
    oldPk
    corpUserId
    sitelinkTenantId
    sitelinkReservationId
    sourceId
    docTypeId
    signatureCertificateId
    subDirectory
    envelopeHash
    statusTypeId
    envelopeStatus
    envelopeStatusDate
    uploadedToCloudDate
    receiptId
    formName
    isSigned
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "ledgerId": 987,
  "formId": "xyz789",
  "tenantId": "abc123"
}
Response
{
  "data": {
    "eSignStatus": {
      "documentId": 987,
      "siteId": 987,
      "employeeId": 123,
      "ledgerId": 987,
      "formId": 123,
      "providerId": 987,
      "envelopeId": "abc123",
      "clientUserId": "abc123",
      "createdDate": "2007-12-03",
      "updatedDate": "2007-12-03",
      "deletedDate": "2007-12-03",
      "timestampData": "abc123",
      "oldPk": 123,
      "corpUserId": 123,
      "sitelinkTenantId": 987,
      "sitelinkReservationId": 987,
      "sourceId": 123,
      "docTypeId": 123,
      "signatureCertificateId": "abc123",
      "subDirectory": "abc123",
      "envelopeHash": "abc123",
      "statusTypeId": 123,
      "envelopeStatus": "AWAITING_TENANT_SIGNATURE",
      "envelopeStatusDate": "2007-12-03",
      "uploadedToCloudDate": "2007-12-03",
      "receiptId": 123,
      "formName": "xyz789",
      "isSigned": true
    }
  }
}

facilityMapFloors

Response

Returns a FacilityMapFloors!

Arguments
Name Description
assetId - String!

Example

Query
query facilityMapFloors($assetId: String!) {
  facilityMapFloors(assetId: $assetId) {
    floors {
      id
      assetId
      name
      label
      shortLabel
      level
      sort
      createdAt
      updatedAt
    }
  }
}
Variables
{"assetId": "xyz789"}
Response
{
  "data": {
    "facilityMapFloors": {"floors": [FacilityMapFloor]}
  }
}

facilityMapId

Response

Returns a FacilityMapId

Arguments
Name Description
assetId - String!

Example

Query
query facilityMapId($assetId: String!) {
  facilityMapId(assetId: $assetId) {
    id
  }
}
Variables
{"assetId": "xyz789"}
Response
{
  "data": {
    "facilityMapId": {"id": "abc123"}
  }
}

facilityMapReferences

Response

Returns [AssetReference!]!

Example

Query
query facilityMapReferences {
  facilityMapReferences {
    id
    asset_id
    key
    value
    created_at
    updated_at
  }
}
Response
{
  "data": {
    "facilityMapReferences": [
      {
        "id": "abc123",
        "asset_id": "xyz789",
        "key": "xyz789",
        "value": "abc123",
        "created_at": "abc123",
        "updated_at": "xyz789"
      }
    ]
  }
}

feature

Response

Returns a Feature!

Arguments
Name Description
id - ID!

Example

Query
query feature($id: ID!) {
  feature(id: $id) {
    id
    name
    iconName
    createdAt
    updatedAt
  }
}
Variables
{"id": "4"}
Response
{
  "data": {
    "feature": {
      "id": "4",
      "name": "xyz789",
      "iconName": "abc123",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

features

Response

Returns a FeatureResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search

Example

Query
query features(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String
) {
  features(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search
  ) {
    total
    features {
      id
      name
      iconName
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "from": 987,
  "size": 123,
  "sort": "ASC",
  "sortBy": "xyz789",
  "search": "xyz789"
}
Response
{
  "data": {
    "features": {"total": 123, "features": [Feature]}
  }
}

followUpDelayReason

Response

Returns a FollowUpDelayReason!

Arguments
Name Description
id - ID!

Example

Query
query followUpDelayReason($id: ID!) {
  followUpDelayReason(id: $id) {
    id
    name
    createdAt
    updatedAt
  }
}
Variables
{"id": "4"}
Response
{
  "data": {
    "followUpDelayReason": {
      "id": 4,
      "name": "abc123",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

followUpDelayReasons

Response

Returns a FollowUpDelayReasonResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search

Example

Query
query followUpDelayReasons(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String
) {
  followUpDelayReasons(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search
  ) {
    total
    followUpDelayReasons {
      id
      name
      createdAt
      updatedAt
    }
  }
}
Variables
{
  "from": 987,
  "size": 123,
  "sort": "ASC",
  "sortBy": "abc123",
  "search": "xyz789"
}
Response
{
  "data": {
    "followUpDelayReasons": {
      "total": 123,
      "followUpDelayReasons": [FollowUpDelayReason]
    }
  }
}

generateTwilioToken

Response

Returns a TwilioTokenResponse!

Arguments
Name Description
identity - String!

Example

Query
query generateTwilioToken($identity: String!) {
  generateTwilioToken(identity: $identity) {
    userId
    token
  }
}
Variables
{"identity": "xyz789"}
Response
{
  "data": {
    "generateTwilioToken": {
      "userId": "4",
      "token": "abc123"
    }
  }
}

getActiveConferences

Example

Query
query getActiveConferences {
  getActiveConferences {
    conferenceSid
    friendlyName
    status
    dateCreated
    dateUpdated
    participants {
      participantSid
      callSid
      accountSid
      conferenceSid
      status
    }
  }
}
Response
{
  "data": {
    "getActiveConferences": [
      {
        "conferenceSid": "xyz789",
        "friendlyName": "abc123",
        "status": "xyz789",
        "dateCreated": "abc123",
        "dateUpdated": "xyz789",
        "participants": [TwilioParticipantDto]
      }
    ]
  }
}

getAllConferenceCallLogsWithFilters

Arguments
Name Description
filter - TwilioCallLogFilterDto!

Example

Query
query getAllConferenceCallLogsWithFilters($filter: TwilioCallLogFilterDto!) {
  getAllConferenceCallLogsWithFilters(filter: $filter) {
    conferenceSid
    friendlyName
    status
    dateCreated
    dateUpdated
    participants {
      participantSid
      callSid
      accountSid
      conferenceSid
      status
    }
  }
}
Variables
{"filter": TwilioCallLogFilterDto}
Response
{
  "data": {
    "getAllConferenceCallLogsWithFilters": [
      {
        "conferenceSid": "abc123",
        "friendlyName": "abc123",
        "status": "abc123",
        "dateCreated": "abc123",
        "dateUpdated": "abc123",
        "participants": [TwilioParticipantDto]
      }
    ]
  }
}

getAllConferencesWithParticipants

Example

Query
query getAllConferencesWithParticipants {
  getAllConferencesWithParticipants {
    conferenceSid
    friendlyName
    status
    dateCreated
    dateUpdated
    participants {
      participantSid
      callSid
      accountSid
      conferenceSid
      status
    }
  }
}
Response
{
  "data": {
    "getAllConferencesWithParticipants": [
      {
        "conferenceSid": "abc123",
        "friendlyName": "xyz789",
        "status": "xyz789",
        "dateCreated": "xyz789",
        "dateUpdated": "abc123",
        "participants": [TwilioParticipantDto]
      }
    ]
  }
}

getAvailableNumbers

Response

Returns [TwilioLocalInstanceType!]!

Arguments
Name Description
queryDto - TwilioPhoneNumberQueryDto!

Example

Query
query getAvailableNumbers($queryDto: TwilioPhoneNumberQueryDto!) {
  getAvailableNumbers(queryDto: $queryDto) {
    phoneNumber
    friendlyName
    lata
    locality
    rateCenter
    latitude
    longitude
    region
    postalCode
    isoCountry
    addressRequirements
    beta
    capabilities {
      mms
      sms
      voice
      fax
    }
  }
}
Variables
{"queryDto": TwilioPhoneNumberQueryDto}
Response
{
  "data": {
    "getAvailableNumbers": [
      {
        "phoneNumber": "abc123",
        "friendlyName": "xyz789",
        "lata": "abc123",
        "locality": "xyz789",
        "rateCenter": "xyz789",
        "latitude": 123.45,
        "longitude": 123.45,
        "region": "xyz789",
        "postalCode": "abc123",
        "isoCountry": "abc123",
        "addressRequirements": "abc123",
        "beta": true,
        "capabilities": TwilioPhoneNumberCapabilities
      }
    ]
  }
}

getCallLog

Response

Returns a TwilioCallLogDto!

Arguments
Name Description
callSid - String!

Example

Query
query getCallLog($callSid: String!) {
  getCallLog(callSid: $callSid) {
    sid
    dateCreated
    dateUpdated
    parentCallSid
    accountSid
    to
    from
    phoneNumberSid
    status
    startTime
    endTime
    duration
    direction
    answeredBy
    forwardedFrom
    groupSid
    callerName
    queueTime
    trunkSid
    uri
  }
}
Variables
{"callSid": "abc123"}
Response
{
  "data": {
    "getCallLog": {
      "sid": "abc123",
      "dateCreated": "2007-12-03",
      "dateUpdated": "2007-12-03",
      "parentCallSid": "xyz789",
      "accountSid": "xyz789",
      "to": "abc123",
      "from": "xyz789",
      "phoneNumberSid": "abc123",
      "status": "abc123",
      "startTime": "2007-12-03",
      "endTime": "2007-12-03",
      "duration": "xyz789",
      "direction": "abc123",
      "answeredBy": "xyz789",
      "forwardedFrom": "abc123",
      "groupSid": "xyz789",
      "callerName": "xyz789",
      "queueTime": "xyz789",
      "trunkSid": "abc123",
      "uri": "xyz789"
    }
  }
}

getCallLogs

Response

Returns [TwilioCallLogDto!]!

Example

Query
query getCallLogs {
  getCallLogs {
    sid
    dateCreated
    dateUpdated
    parentCallSid
    accountSid
    to
    from
    phoneNumberSid
    status
    startTime
    endTime
    duration
    direction
    answeredBy
    forwardedFrom
    groupSid
    callerName
    queueTime
    trunkSid
    uri
  }
}
Response
{
  "data": {
    "getCallLogs": [
      {
        "sid": "xyz789",
        "dateCreated": "2007-12-03",
        "dateUpdated": "2007-12-03",
        "parentCallSid": "abc123",
        "accountSid": "xyz789",
        "to": "xyz789",
        "from": "abc123",
        "phoneNumberSid": "xyz789",
        "status": "xyz789",
        "startTime": "2007-12-03",
        "endTime": "2007-12-03",
        "duration": "xyz789",
        "direction": "xyz789",
        "answeredBy": "xyz789",
        "forwardedFrom": "xyz789",
        "groupSid": "abc123",
        "callerName": "xyz789",
        "queueTime": "xyz789",
        "trunkSid": "abc123",
        "uri": "xyz789"
      }
    ]
  }
}

getCallRecording

Response

Returns a TwilioConferenceRecordingDto!

Arguments
Name Description
recordingSid - String!

Example

Query
query getCallRecording($recordingSid: String!) {
  getCallRecording(recordingSid: $recordingSid) {
    sid
    url
    dateCreated
    duration
  }
}
Variables
{"recordingSid": "abc123"}
Response
{
  "data": {
    "getCallRecording": {
      "sid": "xyz789",
      "url": "xyz789",
      "dateCreated": "xyz789",
      "duration": 123.45
    }
  }
}

getCallRecordings

Arguments
Name Description
callSid - String!

Example

Query
query getCallRecordings($callSid: String!) {
  getCallRecordings(callSid: $callSid) {
    sid
    url
    dateCreated
    duration
  }
}
Variables
{"callSid": "xyz789"}
Response
{
  "data": {
    "getCallRecordings": [
      {
        "sid": "abc123",
        "url": "xyz789",
        "dateCreated": "abc123",
        "duration": 987.65
      }
    ]
  }
}

getConferenceRecordings

Arguments
Name Description
conferenceSid - String!

Example

Query
query getConferenceRecordings($conferenceSid: String!) {
  getConferenceRecordings(conferenceSid: $conferenceSid) {
    sid
    url
    dateCreated
    duration
  }
}
Variables
{"conferenceSid": "abc123"}
Response
{
  "data": {
    "getConferenceRecordings": [
      {
        "sid": "xyz789",
        "url": "abc123",
        "dateCreated": "xyz789",
        "duration": 123.45
      }
    ]
  }
}

getPresignedURL

Response

Returns a PresignResponse!

Arguments
Name Description
filename - String!

Example

Query
query getPresignedURL($filename: String!) {
  getPresignedURL(filename: $filename) {
    id
    filename
    url
    createdAt
    updatedAt
  }
}
Variables
{"filename": "abc123"}
Response
{
  "data": {
    "getPresignedURL": {
      "id": "abc123",
      "filename": "xyz789",
      "url": "abc123",
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

getTaskQueues

Response

Returns [TaskQueue!]!

Arguments
Name Description
workspaceSid - ID!

Example

Query
query getTaskQueues($workspaceSid: ID!) {
  getTaskQueues(workspaceSid: $workspaceSid) {
    sid
    name
    friendlyName
    workspaceSid
    targetWorkers
  }
}
Variables
{"workspaceSid": "4"}
Response
{
  "data": {
    "getTaskQueues": [
      {
        "sid": "4",
        "name": "xyz789",
        "friendlyName": "xyz789",
        "workspaceSid": "abc123",
        "targetWorkers": "abc123"
      }
    ]
  }
}

getWorkers

Response

Returns [WorkerDto!]!

Arguments
Name Description
workspaceSid - ID!

Example

Query
query getWorkers($workspaceSid: ID!) {
  getWorkers(workspaceSid: $workspaceSid) {
    id
    friendlyName
    workspaceSid
    sid
    activitySid
    attributes {
      skills
    }
  }
}
Variables
{"workspaceSid": 4}
Response
{
  "data": {
    "getWorkers": [
      {
        "id": "4",
        "friendlyName": "abc123",
        "workspaceSid": "xyz789",
        "sid": "abc123",
        "activitySid": "xyz789",
        "attributes": Attributes
      }
    ]
  }
}

getWorkflows

Response

Returns [WorkflowDto!]!

Arguments
Name Description
workspaceSid - ID!

Example

Query
query getWorkflows($workspaceSid: ID!) {
  getWorkflows(workspaceSid: $workspaceSid) {
    id
    friendlyName
    workspaceSid
    configuration {
      task_routing {
        filters {
          expression
          targets {
            queue
            priority
            timeout
          }
        }
      }
    }
  }
}
Variables
{"workspaceSid": 4}
Response
{
  "data": {
    "getWorkflows": [
      {
        "id": "4",
        "friendlyName": "abc123",
        "workspaceSid": "abc123",
        "configuration": TaskRoutingConfiguration
      }
    ]
  }
}

getWorkspaces

Response

Returns [WorkspaceDto!]!

Example

Query
query getWorkspaces {
  getWorkspaces {
    id
    friendlyName
    sid
  }
}
Response
{
  "data": {
    "getWorkspaces": [
      {
        "id": "4",
        "friendlyName": "xyz789",
        "sid": "abc123"
      }
    ]
  }
}

lastLockLogTimestamp

Response

Returns a Date

Arguments
Name Description
deviceId - String!

Example

Query
query lastLockLogTimestamp($deviceId: String!) {
  lastLockLogTimestamp(deviceId: $deviceId)
}
Variables
{"deviceId": "abc123"}
Response
{
  "data": {
    "lastLockLogTimestamp": "2007-12-03"
  }
}

latestNotification

Response

Returns a Notification!

Example

Query
query latestNotification {
  latestNotification {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Response
{
  "data": {
    "latestNotification": {
      "id": 4,
      "twilioId": "xyz789",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "xyz789",
      "agentCallSid": "abc123",
      "clientCallSid": "abc123",
      "managerCallSid": "xyz789",
      "agent": User,
      "callDuration": 987,
      "recordingDuration": 987,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "abc123",
      "recordingSid": "abc123",
      "transcriptionSid": "xyz789",
      "taskSid": "abc123",
      "rejectingAgents": ["abc123"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

latestNotificationByUserId

Response

Returns a Notification!

Arguments
Name Description
userId - String!

Example

Query
query latestNotificationByUserId($userId: String!) {
  latestNotificationByUserId(userId: $userId) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Variables
{"userId": "abc123"}
Response
{
  "data": {
    "latestNotificationByUserId": {
      "id": "4",
      "twilioId": "xyz789",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "abc123",
      "agentCallSid": "xyz789",
      "clientCallSid": "abc123",
      "managerCallSid": "xyz789",
      "agent": User,
      "callDuration": 987,
      "recordingDuration": 123,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "xyz789",
      "recordingSid": "xyz789",
      "transcriptionSid": "abc123",
      "taskSid": "abc123",
      "rejectingAgents": ["xyz789"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

ledger

Response

Returns a Ledger!

Arguments
Name Description
locationIdentifier - String! Location identifier
tenantId - String! Tenant ID
ledgerId - Int! Ledger ID

Example

Query
query ledger(
  $locationIdentifier: String!,
  $tenantId: String!,
  $ledgerId: Int!
) {
  ledger(
    locationIdentifier: $locationIdentifier,
    tenantId: $tenantId,
    ledgerId: $ledgerId
  ) {
    sitelinkTenantId
    siteId
    employeeId
    accessCode
    webPassword
    title
    firstName
    middleInitial
    lastName
    companyName
    addressLine1
    addressLine2
    city
    region
    postalCode
    country
    phoneNumber
    alternateTitle
    alternateFirstName
    alternateMiddleInitial
    alternateLastName
    alternateAddressLine1
    alternateAddressLine2
    alternateCity
    alternateRegion
    alternatePostalCode
    alternateCountry
    alternatePhone
    employer
    businessTitle
    businessFirstName
    businessMiddleInitial
    businessLastName
    businessCompanyName
    businessAddressLine1
    businessAddressLine2
    businessCity
    businessRegion
    businessPostalCode
    businessCountry
    businessPhone
    fax
    email
    alternateEmail
    businessEmail
    pager
    mobile
    isCommercial
    isTaxExempt
    isSpecial
    isNeverLockOut
    companyIsTenant
    isOnWaitingList
    noChecks
    dateOfBirth
    iconList
    taxExemptCode
    tenantNote
    primaryPicId
    picFile1
    picFile2
    picFile3
    picFile4
    picFile5
    picFile6
    picFile7
    picFile8
    picFile9
    license
    licRegion
    ssn
    marketingId
    gender
    marketingDistanceId
    marketingWhatId
    marketingReasonId
    marketingWhyId
    marketingTypeId
    isPermanent
    isWalkInPOS
    webSecurityQuestion
    webSecurityAnswer
    longitude
    latitude
    hasSpecialAlert
    deletedDate
    updatedDate
    updateTimestamp
    oldPrimaryKey
    archivedDate
    otherStorageCompaniesContacted
    usedSelfStorageInPast
    permanentGateLockout
    exitSurveyDate
    exitComment
    exitEmailOfferList
    exitNeedAgainDate
    marketingExitRentAgainId
    marketingExitReasonId
    marketingExitSatisfactionId
    alternateRelationship
    exitSatisfactionCleanliness
    exitSatisfactionSafety
    exitSatisfactionServices
    exitSatisfactionStaff
    exitSatisfactionPrice
    marketingDidVisitWebsite
    tenantGlobalNumber
    blackListRating
    smsOptIn
    countryCodeMobile
    createdDate
    taxId
    accessCode2
    globalNumNationalMasterAccount
    globalNumNationalFranchiseAccount
    accessCode2Type
    tenantEventsOptOut
    additionalTitle
    additionalFirstName
    additionalMiddleInitial
    additionalLastName
    additionalAddressLine1
    additionalAddressLine2
    additionalCity
    additionalRegion
    additionalPostalCode
    additionalCountry
    additionalPhone
    additionalEmail
    ledgerId
    isOverlocked
    sitelinkUnitId
    unitName
    chargeBalance
    paidThruDate
    utcBigint
    totalDue
    leaseNumber
    moveInDate
    rentAmount
    billingFrequency
    isInvoiced
    anniversaryDate
    timeZoneId
    taxRateRent
    insurancePremium
    taxRateInsurance
    defaultLeaseNumber
    disabledWebAccess
    purchaseOrderCode
    excludeFromInsurance
    tenantName
    address
    contactInfo
    invoiceDeliveryType
    scheduledOutDate
    autoBillType
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    nextPaymentDue
    nextPayment
  }
}
Variables
{
  "locationIdentifier": "xyz789",
  "tenantId": "xyz789",
  "ledgerId": 987
}
Response
{
  "data": {
    "ledger": {
      "sitelinkTenantId": 987,
      "siteId": 123,
      "employeeId": 987,
      "accessCode": "xyz789",
      "webPassword": "abc123",
      "title": "xyz789",
      "firstName": "xyz789",
      "middleInitial": "xyz789",
      "lastName": "abc123",
      "companyName": "xyz789",
      "addressLine1": "xyz789",
      "addressLine2": "xyz789",
      "city": "xyz789",
      "region": "abc123",
      "postalCode": "xyz789",
      "country": "abc123",
      "phoneNumber": "xyz789",
      "alternateTitle": "abc123",
      "alternateFirstName": "xyz789",
      "alternateMiddleInitial": "abc123",
      "alternateLastName": "xyz789",
      "alternateAddressLine1": "abc123",
      "alternateAddressLine2": "xyz789",
      "alternateCity": "xyz789",
      "alternateRegion": "abc123",
      "alternatePostalCode": "abc123",
      "alternateCountry": "xyz789",
      "alternatePhone": "abc123",
      "employer": "xyz789",
      "businessTitle": "xyz789",
      "businessFirstName": "abc123",
      "businessMiddleInitial": "xyz789",
      "businessLastName": "abc123",
      "businessCompanyName": "xyz789",
      "businessAddressLine1": "abc123",
      "businessAddressLine2": "abc123",
      "businessCity": "abc123",
      "businessRegion": "abc123",
      "businessPostalCode": "xyz789",
      "businessCountry": "xyz789",
      "businessPhone": "xyz789",
      "fax": "abc123",
      "email": "abc123",
      "alternateEmail": "xyz789",
      "businessEmail": "abc123",
      "pager": "abc123",
      "mobile": "xyz789",
      "isCommercial": true,
      "isTaxExempt": false,
      "isSpecial": false,
      "isNeverLockOut": false,
      "companyIsTenant": true,
      "isOnWaitingList": true,
      "noChecks": false,
      "dateOfBirth": "2007-12-03",
      "iconList": "abc123",
      "taxExemptCode": "abc123",
      "tenantNote": "xyz789",
      "primaryPicId": 123,
      "picFile1": "xyz789",
      "picFile2": "abc123",
      "picFile3": "abc123",
      "picFile4": "xyz789",
      "picFile5": "abc123",
      "picFile6": "xyz789",
      "picFile7": "abc123",
      "picFile8": "abc123",
      "picFile9": "xyz789",
      "license": "xyz789",
      "licRegion": "xyz789",
      "ssn": "abc123",
      "marketingId": 987,
      "gender": 123,
      "marketingDistanceId": 123,
      "marketingWhatId": 987,
      "marketingReasonId": 123,
      "marketingWhyId": 123,
      "marketingTypeId": 123,
      "isPermanent": true,
      "isWalkInPOS": false,
      "webSecurityQuestion": "xyz789",
      "webSecurityAnswer": "abc123",
      "longitude": 123.45,
      "latitude": 987.65,
      "hasSpecialAlert": false,
      "deletedDate": "2007-12-03",
      "updatedDate": "2007-12-03",
      "updateTimestamp": "abc123",
      "oldPrimaryKey": 123,
      "archivedDate": "2007-12-03",
      "otherStorageCompaniesContacted": 987,
      "usedSelfStorageInPast": 987,
      "permanentGateLockout": false,
      "exitSurveyDate": "2007-12-03",
      "exitComment": "abc123",
      "exitEmailOfferList": false,
      "exitNeedAgainDate": "2007-12-03",
      "marketingExitRentAgainId": 987,
      "marketingExitReasonId": 987,
      "marketingExitSatisfactionId": 987,
      "alternateRelationship": "xyz789",
      "exitSatisfactionCleanliness": 987,
      "exitSatisfactionSafety": 987,
      "exitSatisfactionServices": 123,
      "exitSatisfactionStaff": 123,
      "exitSatisfactionPrice": 987,
      "marketingDidVisitWebsite": 123,
      "tenantGlobalNumber": "abc123",
      "blackListRating": 987,
      "smsOptIn": false,
      "countryCodeMobile": "xyz789",
      "createdDate": "2007-12-03",
      "taxId": "xyz789",
      "accessCode2": "xyz789",
      "globalNumNationalMasterAccount": 123,
      "globalNumNationalFranchiseAccount": 123,
      "accessCode2Type": 987,
      "tenantEventsOptOut": 123,
      "additionalTitle": "abc123",
      "additionalFirstName": "abc123",
      "additionalMiddleInitial": "xyz789",
      "additionalLastName": "xyz789",
      "additionalAddressLine1": "xyz789",
      "additionalAddressLine2": "xyz789",
      "additionalCity": "abc123",
      "additionalRegion": "abc123",
      "additionalPostalCode": "abc123",
      "additionalCountry": "xyz789",
      "additionalPhone": "abc123",
      "additionalEmail": "xyz789",
      "ledgerId": 123,
      "isOverlocked": false,
      "sitelinkUnitId": 123,
      "unitName": "abc123",
      "chargeBalance": 987.65,
      "paidThruDate": "2007-12-03",
      "utcBigint": "abc123",
      "totalDue": 987.65,
      "leaseNumber": 123,
      "moveInDate": "2007-12-03",
      "rentAmount": 123.45,
      "billingFrequency": "abc123",
      "isInvoiced": false,
      "anniversaryDate": "2007-12-03",
      "timeZoneId": 987,
      "taxRateRent": 123.45,
      "insurancePremium": 123.45,
      "taxRateInsurance": 987.65,
      "defaultLeaseNumber": 123,
      "disabledWebAccess": 987,
      "purchaseOrderCode": "xyz789",
      "excludeFromInsurance": true,
      "tenantName": "abc123",
      "address": "abc123",
      "contactInfo": "xyz789",
      "invoiceDeliveryType": 123,
      "scheduledOutDate": "2007-12-03",
      "autoBillType": "NONE",
      "unit": Unit,
      "nextPaymentDue": "2007-12-03",
      "nextPayment": 123.45
    }
  }
}

ledgers

Response

Returns [Ledger!]!

Arguments
Name Description
locationIdentifier - String! Location identifier
tenantId - String! Tenant ID

Example

Query
query ledgers(
  $locationIdentifier: String!,
  $tenantId: String!
) {
  ledgers(
    locationIdentifier: $locationIdentifier,
    tenantId: $tenantId
  ) {
    sitelinkTenantId
    siteId
    employeeId
    accessCode
    webPassword
    title
    firstName
    middleInitial
    lastName
    companyName
    addressLine1
    addressLine2
    city
    region
    postalCode
    country
    phoneNumber
    alternateTitle
    alternateFirstName
    alternateMiddleInitial
    alternateLastName
    alternateAddressLine1
    alternateAddressLine2
    alternateCity
    alternateRegion
    alternatePostalCode
    alternateCountry
    alternatePhone
    employer
    businessTitle
    businessFirstName
    businessMiddleInitial
    businessLastName
    businessCompanyName
    businessAddressLine1
    businessAddressLine2
    businessCity
    businessRegion
    businessPostalCode
    businessCountry
    businessPhone
    fax
    email
    alternateEmail
    businessEmail
    pager
    mobile
    isCommercial
    isTaxExempt
    isSpecial
    isNeverLockOut
    companyIsTenant
    isOnWaitingList
    noChecks
    dateOfBirth
    iconList
    taxExemptCode
    tenantNote
    primaryPicId
    picFile1
    picFile2
    picFile3
    picFile4
    picFile5
    picFile6
    picFile7
    picFile8
    picFile9
    license
    licRegion
    ssn
    marketingId
    gender
    marketingDistanceId
    marketingWhatId
    marketingReasonId
    marketingWhyId
    marketingTypeId
    isPermanent
    isWalkInPOS
    webSecurityQuestion
    webSecurityAnswer
    longitude
    latitude
    hasSpecialAlert
    deletedDate
    updatedDate
    updateTimestamp
    oldPrimaryKey
    archivedDate
    otherStorageCompaniesContacted
    usedSelfStorageInPast
    permanentGateLockout
    exitSurveyDate
    exitComment
    exitEmailOfferList
    exitNeedAgainDate
    marketingExitRentAgainId
    marketingExitReasonId
    marketingExitSatisfactionId
    alternateRelationship
    exitSatisfactionCleanliness
    exitSatisfactionSafety
    exitSatisfactionServices
    exitSatisfactionStaff
    exitSatisfactionPrice
    marketingDidVisitWebsite
    tenantGlobalNumber
    blackListRating
    smsOptIn
    countryCodeMobile
    createdDate
    taxId
    accessCode2
    globalNumNationalMasterAccount
    globalNumNationalFranchiseAccount
    accessCode2Type
    tenantEventsOptOut
    additionalTitle
    additionalFirstName
    additionalMiddleInitial
    additionalLastName
    additionalAddressLine1
    additionalAddressLine2
    additionalCity
    additionalRegion
    additionalPostalCode
    additionalCountry
    additionalPhone
    additionalEmail
    ledgerId
    isOverlocked
    sitelinkUnitId
    unitName
    chargeBalance
    paidThruDate
    utcBigint
    totalDue
    leaseNumber
    moveInDate
    rentAmount
    billingFrequency
    isInvoiced
    anniversaryDate
    timeZoneId
    taxRateRent
    insurancePremium
    taxRateInsurance
    defaultLeaseNumber
    disabledWebAccess
    purchaseOrderCode
    excludeFromInsurance
    tenantName
    address
    contactInfo
    invoiceDeliveryType
    scheduledOutDate
    autoBillType
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    nextPaymentDue
    nextPayment
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "tenantId": "abc123"
}
Response
{
  "data": {
    "ledgers": [
      {
        "sitelinkTenantId": 987,
        "siteId": 987,
        "employeeId": 123,
        "accessCode": "xyz789",
        "webPassword": "abc123",
        "title": "abc123",
        "firstName": "abc123",
        "middleInitial": "xyz789",
        "lastName": "abc123",
        "companyName": "abc123",
        "addressLine1": "abc123",
        "addressLine2": "abc123",
        "city": "abc123",
        "region": "abc123",
        "postalCode": "abc123",
        "country": "abc123",
        "phoneNumber": "xyz789",
        "alternateTitle": "abc123",
        "alternateFirstName": "abc123",
        "alternateMiddleInitial": "abc123",
        "alternateLastName": "abc123",
        "alternateAddressLine1": "xyz789",
        "alternateAddressLine2": "xyz789",
        "alternateCity": "xyz789",
        "alternateRegion": "xyz789",
        "alternatePostalCode": "abc123",
        "alternateCountry": "abc123",
        "alternatePhone": "abc123",
        "employer": "abc123",
        "businessTitle": "abc123",
        "businessFirstName": "abc123",
        "businessMiddleInitial": "abc123",
        "businessLastName": "xyz789",
        "businessCompanyName": "xyz789",
        "businessAddressLine1": "xyz789",
        "businessAddressLine2": "xyz789",
        "businessCity": "xyz789",
        "businessRegion": "abc123",
        "businessPostalCode": "xyz789",
        "businessCountry": "abc123",
        "businessPhone": "abc123",
        "fax": "abc123",
        "email": "abc123",
        "alternateEmail": "abc123",
        "businessEmail": "xyz789",
        "pager": "xyz789",
        "mobile": "xyz789",
        "isCommercial": true,
        "isTaxExempt": true,
        "isSpecial": false,
        "isNeverLockOut": true,
        "companyIsTenant": true,
        "isOnWaitingList": true,
        "noChecks": false,
        "dateOfBirth": "2007-12-03",
        "iconList": "xyz789",
        "taxExemptCode": "abc123",
        "tenantNote": "abc123",
        "primaryPicId": 123,
        "picFile1": "xyz789",
        "picFile2": "xyz789",
        "picFile3": "abc123",
        "picFile4": "abc123",
        "picFile5": "xyz789",
        "picFile6": "abc123",
        "picFile7": "abc123",
        "picFile8": "xyz789",
        "picFile9": "xyz789",
        "license": "xyz789",
        "licRegion": "abc123",
        "ssn": "xyz789",
        "marketingId": 123,
        "gender": 123,
        "marketingDistanceId": 987,
        "marketingWhatId": 123,
        "marketingReasonId": 987,
        "marketingWhyId": 987,
        "marketingTypeId": 123,
        "isPermanent": true,
        "isWalkInPOS": true,
        "webSecurityQuestion": "xyz789",
        "webSecurityAnswer": "xyz789",
        "longitude": 123.45,
        "latitude": 123.45,
        "hasSpecialAlert": true,
        "deletedDate": "2007-12-03",
        "updatedDate": "2007-12-03",
        "updateTimestamp": "xyz789",
        "oldPrimaryKey": 123,
        "archivedDate": "2007-12-03",
        "otherStorageCompaniesContacted": 123,
        "usedSelfStorageInPast": 123,
        "permanentGateLockout": true,
        "exitSurveyDate": "2007-12-03",
        "exitComment": "abc123",
        "exitEmailOfferList": false,
        "exitNeedAgainDate": "2007-12-03",
        "marketingExitRentAgainId": 987,
        "marketingExitReasonId": 987,
        "marketingExitSatisfactionId": 123,
        "alternateRelationship": "abc123",
        "exitSatisfactionCleanliness": 123,
        "exitSatisfactionSafety": 987,
        "exitSatisfactionServices": 123,
        "exitSatisfactionStaff": 123,
        "exitSatisfactionPrice": 123,
        "marketingDidVisitWebsite": 987,
        "tenantGlobalNumber": "abc123",
        "blackListRating": 987,
        "smsOptIn": true,
        "countryCodeMobile": "xyz789",
        "createdDate": "2007-12-03",
        "taxId": "abc123",
        "accessCode2": "xyz789",
        "globalNumNationalMasterAccount": 123,
        "globalNumNationalFranchiseAccount": 123,
        "accessCode2Type": 987,
        "tenantEventsOptOut": 123,
        "additionalTitle": "abc123",
        "additionalFirstName": "abc123",
        "additionalMiddleInitial": "xyz789",
        "additionalLastName": "abc123",
        "additionalAddressLine1": "abc123",
        "additionalAddressLine2": "abc123",
        "additionalCity": "xyz789",
        "additionalRegion": "abc123",
        "additionalPostalCode": "xyz789",
        "additionalCountry": "xyz789",
        "additionalPhone": "abc123",
        "additionalEmail": "xyz789",
        "ledgerId": 123,
        "isOverlocked": true,
        "sitelinkUnitId": 123,
        "unitName": "abc123",
        "chargeBalance": 123.45,
        "paidThruDate": "2007-12-03",
        "utcBigint": "xyz789",
        "totalDue": 123.45,
        "leaseNumber": 123,
        "moveInDate": "2007-12-03",
        "rentAmount": 123.45,
        "billingFrequency": "abc123",
        "isInvoiced": false,
        "anniversaryDate": "2007-12-03",
        "timeZoneId": 123,
        "taxRateRent": 123.45,
        "insurancePremium": 987.65,
        "taxRateInsurance": 123.45,
        "defaultLeaseNumber": 987,
        "disabledWebAccess": 987,
        "purchaseOrderCode": "xyz789",
        "excludeFromInsurance": false,
        "tenantName": "abc123",
        "address": "xyz789",
        "contactInfo": "xyz789",
        "invoiceDeliveryType": 123,
        "scheduledOutDate": "2007-12-03",
        "autoBillType": "NONE",
        "unit": Unit,
        "nextPaymentDue": "2007-12-03",
        "nextPayment": 123.45
      }
    ]
  }
}

location

Response

Returns a Location!

Arguments
Name Description
identifier - String!

Example

Query
query location($identifier: String!) {
  location(identifier: $identifier) {
    id
    identifier
    sitelinkSafeIdentifier
    name
    description
    aboutUs
    gateCodeDirections
    phone
    fax
    webPhone
    address
    address2
    city
    region
    postalCode
    country
    coordinates {
      lat
      lon
    }
    officeAddress
    officeAddress2
    officeCity
    officeRegion
    officePostalCode
    officeCountry
    officeCoordinates {
      lat
      lon
    }
    contact {
      name
      email
      phone
      address
      address2
      city
      region
      postalCode
      country
    }
    url
    office247
    officeHours {
      monday {
        closed
        open
        close
      }
      tuesday {
        closed
        open
        close
      }
      wednesday {
        closed
        open
        close
      }
      thursday {
        closed
        open
        close
      }
      friday {
        closed
        open
        close
      }
      saturday {
        closed
        open
        close
      }
      sunday {
        closed
        open
        close
      }
    }
    access247
    accessHours {
      monday {
        closed
        open
        close
      }
      tuesday {
        closed
        open
        close
      }
      wednesday {
        closed
        open
        close
      }
      thursday {
        closed
        open
        close
      }
      friday {
        closed
        open
        close
      }
      saturday {
        closed
        open
        close
      }
      sunday {
        closed
        open
        close
      }
    }
    holidayHours {
      name
      rule
      open
      close
      open247
      closed
      hoursType
    }
    timezone
    auctionUrl
    moveInDateRange
    moveOutDateRange
    faqs {
      order
      question
      answer
    }
    insurancePlans {
      insuranceId
      siteId
      coverage
      premium
      theftCoveragePercentage
      coverageDescription
      provider
      brochureUrl
      certificateUrl
      isDefault
      name
    }
    discountPlans {
      concessionId
      siteId
      qtTouchDiscountPlanId
      planNameTermId
      concessionGlobalNumber
      defaultPlanName
      planName
      description
      comment
      planStart
      planEnd
      showOn
      neverExpires
      expirationMonths
      prepay
      onPayment
      manualCredit
      prepaidMonths
      inMonth
      amountType
      changeAmount
      fixedDiscount
      percentageDiscount
      round
      roundTo
    }
    features {
      id
      name
      iconName
      createdAt
      updatedAt
    }
    unitTypeFeatures {
      id
      identifier
      name
      description
      icon
      isSearchable
      isAvailable
      isVisible
      createdAt
      updatedAt
    }
    unitTypeStyles
    unitTypeSizeGroups
    images {
      id
      filename
      originalUrl
      url
      createdAt
      updatedAt
    }
    createdAt
    updatedAt
    sitelinkId
    sitelinkAttributes {
      siteId
      locationIdentifier
      siteRegionCode
      contactName
      emailAddress
      siteName
      siteAddress1
      siteAddress2
      siteCity
      siteRegion
      sitePostalCode
      siteCountry
      sitePhone
      siteFax
      websiteUrl
      legalName
      closedWeekdays
      closedSaturday
      closedSunday
      weekdayStart
      weekdayEnd
      saturdayStart
      saturdayEnd
      sundayStart
      sundayEnd
      businessType
      longitude
      latitude
      distance
      inquiryReservationStarting
      inquiriesNew
      reservationsNew
      inquiryReservationPending
      followupsMade
      inquiryReservationCancelled
      inquiryReservationExpired
      inquiryReservationConvertedToLease
      divisionName
      divisionDescription
      weekdayStartText
      weekdayEndText
      saturdayStartText
      saturdayEndText
      sundayStartText
      sundayEndText
    }
    sitelinkLastImport
    allowLockerPricing
    leaseUp
    isCommercial
    isTraining
    isHidden
    notes {
      note
      createdAt
    }
    isAnnexFacility
    annexPrefix
    startingWidth
    startingLength
    displayStartingSize
    startingPrice
    distance
    metaTitle
    metaDescription
    autopayDiscountDisabled
    hasBanner
    bannerMessage
    bannerStartDate
    bannerEndDate
    bannerBackgroundColor
    managers {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    paymentTypes {
      paymentTypeId
      paymentTypeDesc
      category
      creditCardType
    }
    lastTimeSitelinkUnitsPolled
    hasAdminFee
    adminFee
    hasFacilityFee
    facilityFee
    hasFacilityMap
    facilityMapAssetId
    facilityMapId
    facilityMapFloors {
      id
      assetId
      name
      label
      shortLabel
      level
      sort
      createdAt
      updatedAt
    }
    dynamicPricingEnabled
    primeLocksEnabled
    isStorageDefenderAvailable
    storageDefenderFee
    storageDefenderSitelinkId
  }
}
Variables
{"identifier": "abc123"}
Response
{
  "data": {
    "location": {
      "id": 4,
      "identifier": "xyz789",
      "sitelinkSafeIdentifier": "abc123",
      "name": "abc123",
      "description": "xyz789",
      "aboutUs": "xyz789",
      "gateCodeDirections": "abc123",
      "phone": "abc123",
      "fax": "xyz789",
      "webPhone": "xyz789",
      "address": "xyz789",
      "address2": "xyz789",
      "city": "abc123",
      "region": "abc123",
      "postalCode": "xyz789",
      "country": "abc123",
      "coordinates": GeoCoordinates,
      "officeAddress": "xyz789",
      "officeAddress2": "xyz789",
      "officeCity": "abc123",
      "officeRegion": "xyz789",
      "officePostalCode": "abc123",
      "officeCountry": "abc123",
      "officeCoordinates": GeoCoordinates,
      "contact": Contact,
      "url": "xyz789",
      "office247": false,
      "officeHours": WeeklyHours,
      "access247": true,
      "accessHours": WeeklyHours,
      "holidayHours": [HolidayTime],
      "timezone": "abc123",
      "auctionUrl": "xyz789",
      "moveInDateRange": 123,
      "moveOutDateRange": 987,
      "faqs": [Faq],
      "insurancePlans": [InsurancePlanSitelink],
      "discountPlans": [SitelinkDiscountPlan],
      "features": [Feature],
      "unitTypeFeatures": [UnitTypeFeature],
      "unitTypeStyles": ["STANDARD"],
      "unitTypeSizeGroups": ["UNKNOWN"],
      "images": [Image],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03",
      "sitelinkId": "xyz789",
      "sitelinkAttributes": SitelinkLocation,
      "sitelinkLastImport": "2007-12-03",
      "allowLockerPricing": true,
      "leaseUp": false,
      "isCommercial": true,
      "isTraining": true,
      "isHidden": true,
      "notes": [LocationNote],
      "isAnnexFacility": true,
      "annexPrefix": "xyz789",
      "startingWidth": 987.65,
      "startingLength": 123.45,
      "displayStartingSize": "xyz789",
      "startingPrice": 987.65,
      "distance": 987.65,
      "metaTitle": "xyz789",
      "metaDescription": "xyz789",
      "autopayDiscountDisabled": false,
      "hasBanner": true,
      "bannerMessage": "abc123",
      "bannerStartDate": "2007-12-03",
      "bannerEndDate": "2007-12-03",
      "bannerBackgroundColor": "abc123",
      "managers": [User],
      "paymentTypes": [PaymentType],
      "lastTimeSitelinkUnitsPolled": 987.65,
      "hasAdminFee": false,
      "adminFee": 987.65,
      "hasFacilityFee": false,
      "facilityFee": 987.65,
      "hasFacilityMap": true,
      "facilityMapAssetId": "abc123",
      "facilityMapId": "abc123",
      "facilityMapFloors": [FacilityMapFloor],
      "dynamicPricingEnabled": true,
      "primeLocksEnabled": true,
      "isStorageDefenderAvailable": true,
      "storageDefenderFee": 123.45,
      "storageDefenderSitelinkId": 123
    }
  }
}

locationLockAccess

Response

Returns a LocationLockAccessResponse!

Arguments
Name Description
locationId - ID!

Example

Query
query locationLockAccess($locationId: ID!) {
  locationLockAccess(locationId: $locationId) {
    locationId
    sessionToken
    bulkCredentials
    bulkSignature
    grantedAt
    expiresAt
    lockCount
  }
}
Variables
{"locationId": "4"}
Response
{
  "data": {
    "locationLockAccess": {
      "locationId": "xyz789",
      "sessionToken": "abc123",
      "bulkCredentials": "abc123",
      "bulkSignature": "abc123",
      "grantedAt": "2007-12-03",
      "expiresAt": "2007-12-03",
      "lockCount": 987
    }
  }
}

locationStates

Response

Returns [State!]!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search
showHidden - Boolean Show hidden states
showTraining - Boolean Show training states

Example

Query
query locationStates(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String,
  $showHidden: Boolean,
  $showTraining: Boolean
) {
  locationStates(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search,
    showHidden: $showHidden,
    showTraining: $showTraining
  ) {
    code
    name
  }
}
Variables
{
  "from": 123,
  "size": 123,
  "sort": "ASC",
  "sortBy": "xyz789",
  "search": "xyz789",
  "showHidden": true,
  "showTraining": true
}
Response
{
  "data": {
    "locationStates": [
      {
        "code": "xyz789",
        "name": "xyz789"
      }
    ]
  }
}

locations

Response

Returns a LocationResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search
searchLocation - String Search location
distance - Int Distance. Default = 999999
region - String Region
features - [String!] Features
longitude - Float Longitude
latitude - Float Latitude
showHidden - Boolean Show hidden locations. Default = false
showTraining - Boolean Show training locations. Default = false
showCommercial - Boolean Show commercial locations. Default = false
regions - [String!] Regions
locations - [String!] Only include locations
excludedLocations - [String!] Excluded locations
unitTypeSizeGroups - [UnitSizeGroupType!] Unit type size groups
unitTypeStyles - [UnitStyleType!] Unit styles

Example

Query
query locations(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String,
  $searchLocation: String,
  $distance: Int,
  $region: String,
  $features: [String!],
  $longitude: Float,
  $latitude: Float,
  $showHidden: Boolean,
  $showTraining: Boolean,
  $showCommercial: Boolean,
  $regions: [String!],
  $locations: [String!],
  $excludedLocations: [String!],
  $unitTypeSizeGroups: [UnitSizeGroupType!],
  $unitTypeStyles: [UnitStyleType!]
) {
  locations(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search,
    searchLocation: $searchLocation,
    distance: $distance,
    region: $region,
    features: $features,
    longitude: $longitude,
    latitude: $latitude,
    showHidden: $showHidden,
    showTraining: $showTraining,
    showCommercial: $showCommercial,
    regions: $regions,
    locations: $locations,
    excludedLocations: $excludedLocations,
    unitTypeSizeGroups: $unitTypeSizeGroups,
    unitTypeStyles: $unitTypeStyles
  ) {
    total
    locations {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
  }
}
Variables
{
  "from": 987,
  "size": 123,
  "sort": "ASC",
  "sortBy": "xyz789",
  "search": "xyz789",
  "searchLocation": "xyz789",
  "distance": 999999,
  "region": "abc123",
  "features": ["abc123"],
  "longitude": 987.65,
  "latitude": 987.65,
  "showHidden": false,
  "showTraining": false,
  "showCommercial": false,
  "regions": ["abc123"],
  "locations": ["abc123"],
  "excludedLocations": ["abc123"],
  "unitTypeSizeGroups": ["UNKNOWN"],
  "unitTypeStyles": ["STANDARD"]
}
Response
{
  "data": {
    "locations": {"total": 123, "locations": [Location]}
  }
}

locationsSelect

Response

Returns a LocationSelectResults!

Example

Query
query locationsSelect {
  locationsSelect {
    total
    locations {
      id
      name
      identifier
    }
  }
}
Response
{
  "data": {
    "locationsSelect": {
      "total": 123,
      "locations": [SimpleLocation]
    }
  }
}

lock

Response

Returns a Lock!

Arguments
Name Description
id - ID!

Example

Query
query lock($id: ID!) {
  lock(id: $id) {
    id
    name
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    keys {
      id
      userType
      createdAt
      updatedAt
    }
    isSetup
    createdAt
    updatedAt
  }
}
Variables
{"id": 4}
Response
{
  "data": {
    "lock": {
      "id": "4",
      "name": "xyz789",
      "location": Location,
      "unit": Unit,
      "keys": [LockKey],
      "isSetup": true,
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

lockAccess

Response

Returns a LockAccessResponse!

Arguments
Name Description
lockId - ID!

Example

Query
query lockAccess($lockId: ID!) {
  lockAccess(lockId: $lockId) {
    lockId
    lockAccessToken
    grantedAt
    expiresAt
    encryptedKey {
      id
      userType
      createdAt
      updatedAt
      key
    }
  }
}
Variables
{"lockId": 4}
Response
{
  "data": {
    "lockAccess": {
      "lockId": "abc123",
      "lockAccessToken": "xyz789",
      "grantedAt": "2007-12-03",
      "expiresAt": "2007-12-03",
      "encryptedKey": SecureLockKey
    }
  }
}

lockByUnit

Response

Returns a Lock

Arguments
Name Description
unitId - ID!

Example

Query
query lockByUnit($unitId: ID!) {
  lockByUnit(unitId: $unitId) {
    id
    name
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    keys {
      id
      userType
      createdAt
      updatedAt
    }
    isSetup
    createdAt
    updatedAt
  }
}
Variables
{"unitId": "4"}
Response
{
  "data": {
    "lockByUnit": {
      "id": "4",
      "name": "xyz789",
      "location": Location,
      "unit": Unit,
      "keys": [LockKey],
      "isSetup": false,
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

lockImportStatus

Description

Get status of lock import job

Response

Returns a LockImportJob

Arguments
Name Description
jobId - ID! Import job ID

Example

Query
query lockImportStatus($jobId: ID!) {
  lockImportStatus(jobId: $jobId) {
    jobId
    status
    message
    createdAt
    startedAt
    completedAt
    progress {
      processed
      total
      success
      failed
      percentComplete
      estimatedTimeRemaining
    }
    errors {
      row
      message
      data
    }
    createdLocks
  }
}
Variables
{"jobId": "4"}
Response
{
  "data": {
    "lockImportStatus": {
      "jobId": 4,
      "status": "PENDING",
      "message": "abc123",
      "createdAt": "2007-12-03",
      "startedAt": "2007-12-03",
      "completedAt": "2007-12-03",
      "progress": LockImportProgress,
      "errors": [LockImportError],
      "createdLocks": ["abc123"]
    }
  }
}

lockLogStats

Response

Returns a String!

Arguments
Name Description
lockId - ID
unitId - ID
locationId - ID

Example

Query
query lockLogStats(
  $lockId: ID,
  $unitId: ID,
  $locationId: ID
) {
  lockLogStats(
    lockId: $lockId,
    unitId: $unitId,
    locationId: $locationId
  )
}
Variables
{
  "lockId": 4,
  "unitId": "4",
  "locationId": 4
}
Response
{"data": {"lockLogStats": "xyz789"}}

lockLogs

Response

Returns a LockLogResults!

Arguments
Name Description
lockId - ID Filter by lock ID
unitId - ID Filter by unit ID
locationIdentifier - String Filter by location identifier
startDate - Date Start date filter
endDate - Date End date filter
eventCodes - [LockEventCode!] Filter by event codes
statuses - [LockStatus!] Filter by statuses
search - String Search in message
limit - Int Limit number of results (max 100)
cursor - String Cursor for pagination
sortBy - String Sort field
sortOrder - String Sort order (asc/desc)

Example

Query
query lockLogs(
  $lockId: ID,
  $unitId: ID,
  $locationIdentifier: String,
  $startDate: Date,
  $endDate: Date,
  $eventCodes: [LockEventCode!],
  $statuses: [LockStatus!],
  $search: String,
  $limit: Int,
  $cursor: String,
  $sortBy: String,
  $sortOrder: String
) {
  lockLogs(
    lockId: $lockId,
    unitId: $unitId,
    locationIdentifier: $locationIdentifier,
    startDate: $startDate,
    endDate: $endDate,
    eventCodes: $eventCodes,
    statuses: $statuses,
    search: $search,
    limit: $limit,
    cursor: $cursor,
    sortBy: $sortBy,
    sortOrder: $sortOrder
  ) {
    logs {
      id
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      userId
      date
      eventCode
      status
      keyId
      message
      metadata
      deviceId
      ipAddress
      logHash
      createdAt
      updatedAt
    }
    total
    nextCursor
    prevCursor
  }
}
Variables
{
  "lockId": "4",
  "unitId": 4,
  "locationIdentifier": "xyz789",
  "startDate": "2007-12-03",
  "endDate": "2007-12-03",
  "eventCodes": ["UNLOCK"],
  "statuses": ["SUCCESS"],
  "search": "xyz789",
  "limit": 123,
  "cursor": "abc123",
  "sortBy": "abc123",
  "sortOrder": "xyz789"
}
Response
{
  "data": {
    "lockLogs": {
      "logs": [LockLog],
      "total": 123,
      "nextCursor": "xyz789",
      "prevCursor": "xyz789"
    }
  }
}

locks

Response

Returns a LockResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search
isSetup - Boolean Filter by setup status

Example

Query
query locks(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String,
  $isSetup: Boolean
) {
  locks(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search,
    isSetup: $isSetup
  ) {
    locks {
      id
      name
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      keys {
        id
        userType
        createdAt
        updatedAt
      }
      isSetup
      createdAt
      updatedAt
    }
    total
  }
}
Variables
{
  "from": 123,
  "size": 987,
  "sort": "ASC",
  "sortBy": "abc123",
  "search": "xyz789",
  "isSetup": true
}
Response
{"data": {"locks": {"locks": [Lock], "total": 987}}}

moveInCosts

Response

Returns a MoveInCosts!

Arguments
Name Description
locationIdentifier - String! Location code associated with the unit transaction
moveInDate - Date! Date of move-in for the unit transaction
insuranceId - Int Identifier for the insurance coverage linked to the unit
concessionId - Int Identifier for the concession plan applied to the unit
channelType - SitelinkChannelType Type of channel through which the unit transaction was made. Default = WEB_RATE
unitId - String! Unit id
isStorageDefenderSelected - Boolean Is storage defender selected

Example

Query
query moveInCosts(
  $locationIdentifier: String!,
  $moveInDate: Date!,
  $insuranceId: Int,
  $concessionId: Int,
  $channelType: SitelinkChannelType,
  $unitId: String!,
  $isStorageDefenderSelected: Boolean
) {
  moveInCosts(
    locationIdentifier: $locationIdentifier,
    moveInDate: $moveInDate,
    insuranceId: $insuranceId,
    concessionId: $concessionId,
    channelType: $channelType,
    unitId: $unitId,
    isStorageDefenderSelected: $isStorageDefenderSelected
  ) {
    items {
      name
      startDate
      endDate
      cost
      tax
      discount
      total
      isAdditionalCost
      sitelinkAttributes {
        retCode
        sitelinkUnitId
        chargeDescription
        chargeAmount
        taxAmount
        startDate
        endDate
        width
        length
        climate
        unitName
        typeName
        pushRate
        annivDateLeasing
        secondMonthProrate
        dayStartProrating
        dayStartProratePlusNext
        currencyDecimalPlaces
        moveInRequired
        discount
        total
        concessionId
        tenantRate
        tax1
        tax2
        taxAmount2
        rmRoundTo
        webRate
        chargeAmountRnd
        priceTax1
        priceTax2
        planName
      }
    }
    subtotal
    discount
    discountName
    tax
    total
    sitelinkTotal
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "moveInDate": "2007-12-03",
  "insuranceId": 123,
  "concessionId": 987,
  "channelType": "WEB_RATE",
  "unitId": "abc123",
  "isStorageDefenderSelected": false
}
Response
{
  "data": {
    "moveInCosts": {
      "items": [MoveInCost],
      "subtotal": 123.45,
      "discount": 987.65,
      "discountName": "abc123",
      "tax": 987.65,
      "total": 123.45,
      "sitelinkTotal": 987.65
    }
  }
}

moveOut

Response

Returns a MoveOut!

Arguments
Name Description
locationIdentifier - String! Location identifier
tenantId - String! Tenant ID
unitId - String! Unit ID

Example

Query
query moveOut(
  $locationIdentifier: String!,
  $tenantId: String!,
  $unitId: String!
) {
  moveOut(
    locationIdentifier: $locationIdentifier,
    tenantId: $tenantId,
    unitId: $unitId
  ) {
    sitelinkUnitId
    sitelinkTenantId
    ledgerId
    scheduledMoveOutDate
    firstName
    lastName
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
  }
}
Variables
{
  "locationIdentifier": "xyz789",
  "tenantId": "abc123",
  "unitId": "abc123"
}
Response
{
  "data": {
    "moveOut": {
      "sitelinkUnitId": 987,
      "sitelinkTenantId": 123,
      "ledgerId": 123,
      "scheduledMoveOutDate": "2007-12-03",
      "firstName": "xyz789",
      "lastName": "xyz789",
      "unit": Unit
    }
  }
}

myUnit

Response

Returns a Ledger!

Arguments
Name Description
locationIdentifier - String!
tenantId - String!
ledgerId - Int!

Example

Query
query myUnit(
  $locationIdentifier: String!,
  $tenantId: String!,
  $ledgerId: Int!
) {
  myUnit(
    locationIdentifier: $locationIdentifier,
    tenantId: $tenantId,
    ledgerId: $ledgerId
  ) {
    sitelinkTenantId
    siteId
    employeeId
    accessCode
    webPassword
    title
    firstName
    middleInitial
    lastName
    companyName
    addressLine1
    addressLine2
    city
    region
    postalCode
    country
    phoneNumber
    alternateTitle
    alternateFirstName
    alternateMiddleInitial
    alternateLastName
    alternateAddressLine1
    alternateAddressLine2
    alternateCity
    alternateRegion
    alternatePostalCode
    alternateCountry
    alternatePhone
    employer
    businessTitle
    businessFirstName
    businessMiddleInitial
    businessLastName
    businessCompanyName
    businessAddressLine1
    businessAddressLine2
    businessCity
    businessRegion
    businessPostalCode
    businessCountry
    businessPhone
    fax
    email
    alternateEmail
    businessEmail
    pager
    mobile
    isCommercial
    isTaxExempt
    isSpecial
    isNeverLockOut
    companyIsTenant
    isOnWaitingList
    noChecks
    dateOfBirth
    iconList
    taxExemptCode
    tenantNote
    primaryPicId
    picFile1
    picFile2
    picFile3
    picFile4
    picFile5
    picFile6
    picFile7
    picFile8
    picFile9
    license
    licRegion
    ssn
    marketingId
    gender
    marketingDistanceId
    marketingWhatId
    marketingReasonId
    marketingWhyId
    marketingTypeId
    isPermanent
    isWalkInPOS
    webSecurityQuestion
    webSecurityAnswer
    longitude
    latitude
    hasSpecialAlert
    deletedDate
    updatedDate
    updateTimestamp
    oldPrimaryKey
    archivedDate
    otherStorageCompaniesContacted
    usedSelfStorageInPast
    permanentGateLockout
    exitSurveyDate
    exitComment
    exitEmailOfferList
    exitNeedAgainDate
    marketingExitRentAgainId
    marketingExitReasonId
    marketingExitSatisfactionId
    alternateRelationship
    exitSatisfactionCleanliness
    exitSatisfactionSafety
    exitSatisfactionServices
    exitSatisfactionStaff
    exitSatisfactionPrice
    marketingDidVisitWebsite
    tenantGlobalNumber
    blackListRating
    smsOptIn
    countryCodeMobile
    createdDate
    taxId
    accessCode2
    globalNumNationalMasterAccount
    globalNumNationalFranchiseAccount
    accessCode2Type
    tenantEventsOptOut
    additionalTitle
    additionalFirstName
    additionalMiddleInitial
    additionalLastName
    additionalAddressLine1
    additionalAddressLine2
    additionalCity
    additionalRegion
    additionalPostalCode
    additionalCountry
    additionalPhone
    additionalEmail
    ledgerId
    isOverlocked
    sitelinkUnitId
    unitName
    chargeBalance
    paidThruDate
    utcBigint
    totalDue
    leaseNumber
    moveInDate
    rentAmount
    billingFrequency
    isInvoiced
    anniversaryDate
    timeZoneId
    taxRateRent
    insurancePremium
    taxRateInsurance
    defaultLeaseNumber
    disabledWebAccess
    purchaseOrderCode
    excludeFromInsurance
    tenantName
    address
    contactInfo
    invoiceDeliveryType
    scheduledOutDate
    autoBillType
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    nextPaymentDue
    nextPayment
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "tenantId": "abc123",
  "ledgerId": 123
}
Response
{
  "data": {
    "myUnit": {
      "sitelinkTenantId": 123,
      "siteId": 987,
      "employeeId": 123,
      "accessCode": "abc123",
      "webPassword": "abc123",
      "title": "xyz789",
      "firstName": "abc123",
      "middleInitial": "xyz789",
      "lastName": "abc123",
      "companyName": "abc123",
      "addressLine1": "abc123",
      "addressLine2": "abc123",
      "city": "abc123",
      "region": "xyz789",
      "postalCode": "abc123",
      "country": "xyz789",
      "phoneNumber": "xyz789",
      "alternateTitle": "abc123",
      "alternateFirstName": "xyz789",
      "alternateMiddleInitial": "xyz789",
      "alternateLastName": "abc123",
      "alternateAddressLine1": "abc123",
      "alternateAddressLine2": "abc123",
      "alternateCity": "xyz789",
      "alternateRegion": "abc123",
      "alternatePostalCode": "abc123",
      "alternateCountry": "xyz789",
      "alternatePhone": "xyz789",
      "employer": "abc123",
      "businessTitle": "xyz789",
      "businessFirstName": "abc123",
      "businessMiddleInitial": "xyz789",
      "businessLastName": "xyz789",
      "businessCompanyName": "abc123",
      "businessAddressLine1": "xyz789",
      "businessAddressLine2": "xyz789",
      "businessCity": "xyz789",
      "businessRegion": "xyz789",
      "businessPostalCode": "abc123",
      "businessCountry": "abc123",
      "businessPhone": "xyz789",
      "fax": "abc123",
      "email": "abc123",
      "alternateEmail": "xyz789",
      "businessEmail": "abc123",
      "pager": "abc123",
      "mobile": "xyz789",
      "isCommercial": true,
      "isTaxExempt": true,
      "isSpecial": false,
      "isNeverLockOut": false,
      "companyIsTenant": false,
      "isOnWaitingList": true,
      "noChecks": false,
      "dateOfBirth": "2007-12-03",
      "iconList": "xyz789",
      "taxExemptCode": "xyz789",
      "tenantNote": "abc123",
      "primaryPicId": 987,
      "picFile1": "xyz789",
      "picFile2": "abc123",
      "picFile3": "abc123",
      "picFile4": "abc123",
      "picFile5": "xyz789",
      "picFile6": "abc123",
      "picFile7": "xyz789",
      "picFile8": "abc123",
      "picFile9": "xyz789",
      "license": "abc123",
      "licRegion": "xyz789",
      "ssn": "abc123",
      "marketingId": 987,
      "gender": 987,
      "marketingDistanceId": 987,
      "marketingWhatId": 987,
      "marketingReasonId": 987,
      "marketingWhyId": 987,
      "marketingTypeId": 987,
      "isPermanent": false,
      "isWalkInPOS": false,
      "webSecurityQuestion": "xyz789",
      "webSecurityAnswer": "abc123",
      "longitude": 987.65,
      "latitude": 123.45,
      "hasSpecialAlert": true,
      "deletedDate": "2007-12-03",
      "updatedDate": "2007-12-03",
      "updateTimestamp": "abc123",
      "oldPrimaryKey": 123,
      "archivedDate": "2007-12-03",
      "otherStorageCompaniesContacted": 987,
      "usedSelfStorageInPast": 987,
      "permanentGateLockout": false,
      "exitSurveyDate": "2007-12-03",
      "exitComment": "xyz789",
      "exitEmailOfferList": true,
      "exitNeedAgainDate": "2007-12-03",
      "marketingExitRentAgainId": 123,
      "marketingExitReasonId": 123,
      "marketingExitSatisfactionId": 123,
      "alternateRelationship": "xyz789",
      "exitSatisfactionCleanliness": 123,
      "exitSatisfactionSafety": 123,
      "exitSatisfactionServices": 123,
      "exitSatisfactionStaff": 123,
      "exitSatisfactionPrice": 987,
      "marketingDidVisitWebsite": 987,
      "tenantGlobalNumber": "xyz789",
      "blackListRating": 987,
      "smsOptIn": true,
      "countryCodeMobile": "abc123",
      "createdDate": "2007-12-03",
      "taxId": "xyz789",
      "accessCode2": "xyz789",
      "globalNumNationalMasterAccount": 123,
      "globalNumNationalFranchiseAccount": 123,
      "accessCode2Type": 987,
      "tenantEventsOptOut": 123,
      "additionalTitle": "abc123",
      "additionalFirstName": "xyz789",
      "additionalMiddleInitial": "xyz789",
      "additionalLastName": "xyz789",
      "additionalAddressLine1": "xyz789",
      "additionalAddressLine2": "xyz789",
      "additionalCity": "xyz789",
      "additionalRegion": "abc123",
      "additionalPostalCode": "xyz789",
      "additionalCountry": "xyz789",
      "additionalPhone": "abc123",
      "additionalEmail": "abc123",
      "ledgerId": 123,
      "isOverlocked": true,
      "sitelinkUnitId": 123,
      "unitName": "abc123",
      "chargeBalance": 987.65,
      "paidThruDate": "2007-12-03",
      "utcBigint": "abc123",
      "totalDue": 987.65,
      "leaseNumber": 987,
      "moveInDate": "2007-12-03",
      "rentAmount": 987.65,
      "billingFrequency": "xyz789",
      "isInvoiced": true,
      "anniversaryDate": "2007-12-03",
      "timeZoneId": 123,
      "taxRateRent": 123.45,
      "insurancePremium": 987.65,
      "taxRateInsurance": 123.45,
      "defaultLeaseNumber": 123,
      "disabledWebAccess": 123,
      "purchaseOrderCode": "xyz789",
      "excludeFromInsurance": false,
      "tenantName": "xyz789",
      "address": "xyz789",
      "contactInfo": "xyz789",
      "invoiceDeliveryType": 123,
      "scheduledOutDate": "2007-12-03",
      "autoBillType": "NONE",
      "unit": Unit,
      "nextPaymentDue": "2007-12-03",
      "nextPayment": 987.65
    }
  }
}

myUnits

Response

Returns [Ledger!]!

Arguments
Name Description
locationIdentifier - String!
tenantId - String!

Example

Query
query myUnits(
  $locationIdentifier: String!,
  $tenantId: String!
) {
  myUnits(
    locationIdentifier: $locationIdentifier,
    tenantId: $tenantId
  ) {
    sitelinkTenantId
    siteId
    employeeId
    accessCode
    webPassword
    title
    firstName
    middleInitial
    lastName
    companyName
    addressLine1
    addressLine2
    city
    region
    postalCode
    country
    phoneNumber
    alternateTitle
    alternateFirstName
    alternateMiddleInitial
    alternateLastName
    alternateAddressLine1
    alternateAddressLine2
    alternateCity
    alternateRegion
    alternatePostalCode
    alternateCountry
    alternatePhone
    employer
    businessTitle
    businessFirstName
    businessMiddleInitial
    businessLastName
    businessCompanyName
    businessAddressLine1
    businessAddressLine2
    businessCity
    businessRegion
    businessPostalCode
    businessCountry
    businessPhone
    fax
    email
    alternateEmail
    businessEmail
    pager
    mobile
    isCommercial
    isTaxExempt
    isSpecial
    isNeverLockOut
    companyIsTenant
    isOnWaitingList
    noChecks
    dateOfBirth
    iconList
    taxExemptCode
    tenantNote
    primaryPicId
    picFile1
    picFile2
    picFile3
    picFile4
    picFile5
    picFile6
    picFile7
    picFile8
    picFile9
    license
    licRegion
    ssn
    marketingId
    gender
    marketingDistanceId
    marketingWhatId
    marketingReasonId
    marketingWhyId
    marketingTypeId
    isPermanent
    isWalkInPOS
    webSecurityQuestion
    webSecurityAnswer
    longitude
    latitude
    hasSpecialAlert
    deletedDate
    updatedDate
    updateTimestamp
    oldPrimaryKey
    archivedDate
    otherStorageCompaniesContacted
    usedSelfStorageInPast
    permanentGateLockout
    exitSurveyDate
    exitComment
    exitEmailOfferList
    exitNeedAgainDate
    marketingExitRentAgainId
    marketingExitReasonId
    marketingExitSatisfactionId
    alternateRelationship
    exitSatisfactionCleanliness
    exitSatisfactionSafety
    exitSatisfactionServices
    exitSatisfactionStaff
    exitSatisfactionPrice
    marketingDidVisitWebsite
    tenantGlobalNumber
    blackListRating
    smsOptIn
    countryCodeMobile
    createdDate
    taxId
    accessCode2
    globalNumNationalMasterAccount
    globalNumNationalFranchiseAccount
    accessCode2Type
    tenantEventsOptOut
    additionalTitle
    additionalFirstName
    additionalMiddleInitial
    additionalLastName
    additionalAddressLine1
    additionalAddressLine2
    additionalCity
    additionalRegion
    additionalPostalCode
    additionalCountry
    additionalPhone
    additionalEmail
    ledgerId
    isOverlocked
    sitelinkUnitId
    unitName
    chargeBalance
    paidThruDate
    utcBigint
    totalDue
    leaseNumber
    moveInDate
    rentAmount
    billingFrequency
    isInvoiced
    anniversaryDate
    timeZoneId
    taxRateRent
    insurancePremium
    taxRateInsurance
    defaultLeaseNumber
    disabledWebAccess
    purchaseOrderCode
    excludeFromInsurance
    tenantName
    address
    contactInfo
    invoiceDeliveryType
    scheduledOutDate
    autoBillType
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    nextPaymentDue
    nextPayment
  }
}
Variables
{
  "locationIdentifier": "abc123",
  "tenantId": "xyz789"
}
Response
{
  "data": {
    "myUnits": [
      {
        "sitelinkTenantId": 987,
        "siteId": 987,
        "employeeId": 123,
        "accessCode": "xyz789",
        "webPassword": "abc123",
        "title": "abc123",
        "firstName": "xyz789",
        "middleInitial": "xyz789",
        "lastName": "xyz789",
        "companyName": "xyz789",
        "addressLine1": "abc123",
        "addressLine2": "abc123",
        "city": "abc123",
        "region": "xyz789",
        "postalCode": "abc123",
        "country": "xyz789",
        "phoneNumber": "abc123",
        "alternateTitle": "abc123",
        "alternateFirstName": "xyz789",
        "alternateMiddleInitial": "abc123",
        "alternateLastName": "xyz789",
        "alternateAddressLine1": "xyz789",
        "alternateAddressLine2": "xyz789",
        "alternateCity": "abc123",
        "alternateRegion": "xyz789",
        "alternatePostalCode": "abc123",
        "alternateCountry": "xyz789",
        "alternatePhone": "xyz789",
        "employer": "abc123",
        "businessTitle": "abc123",
        "businessFirstName": "xyz789",
        "businessMiddleInitial": "xyz789",
        "businessLastName": "abc123",
        "businessCompanyName": "xyz789",
        "businessAddressLine1": "abc123",
        "businessAddressLine2": "xyz789",
        "businessCity": "abc123",
        "businessRegion": "abc123",
        "businessPostalCode": "xyz789",
        "businessCountry": "xyz789",
        "businessPhone": "xyz789",
        "fax": "abc123",
        "email": "abc123",
        "alternateEmail": "abc123",
        "businessEmail": "abc123",
        "pager": "abc123",
        "mobile": "abc123",
        "isCommercial": false,
        "isTaxExempt": false,
        "isSpecial": false,
        "isNeverLockOut": true,
        "companyIsTenant": false,
        "isOnWaitingList": true,
        "noChecks": true,
        "dateOfBirth": "2007-12-03",
        "iconList": "xyz789",
        "taxExemptCode": "xyz789",
        "tenantNote": "xyz789",
        "primaryPicId": 987,
        "picFile1": "abc123",
        "picFile2": "xyz789",
        "picFile3": "abc123",
        "picFile4": "xyz789",
        "picFile5": "xyz789",
        "picFile6": "abc123",
        "picFile7": "xyz789",
        "picFile8": "abc123",
        "picFile9": "abc123",
        "license": "xyz789",
        "licRegion": "abc123",
        "ssn": "abc123",
        "marketingId": 123,
        "gender": 987,
        "marketingDistanceId": 987,
        "marketingWhatId": 987,
        "marketingReasonId": 123,
        "marketingWhyId": 123,
        "marketingTypeId": 123,
        "isPermanent": false,
        "isWalkInPOS": true,
        "webSecurityQuestion": "abc123",
        "webSecurityAnswer": "abc123",
        "longitude": 123.45,
        "latitude": 987.65,
        "hasSpecialAlert": true,
        "deletedDate": "2007-12-03",
        "updatedDate": "2007-12-03",
        "updateTimestamp": "abc123",
        "oldPrimaryKey": 123,
        "archivedDate": "2007-12-03",
        "otherStorageCompaniesContacted": 987,
        "usedSelfStorageInPast": 123,
        "permanentGateLockout": false,
        "exitSurveyDate": "2007-12-03",
        "exitComment": "xyz789",
        "exitEmailOfferList": true,
        "exitNeedAgainDate": "2007-12-03",
        "marketingExitRentAgainId": 987,
        "marketingExitReasonId": 987,
        "marketingExitSatisfactionId": 123,
        "alternateRelationship": "xyz789",
        "exitSatisfactionCleanliness": 123,
        "exitSatisfactionSafety": 123,
        "exitSatisfactionServices": 123,
        "exitSatisfactionStaff": 987,
        "exitSatisfactionPrice": 123,
        "marketingDidVisitWebsite": 123,
        "tenantGlobalNumber": "xyz789",
        "blackListRating": 123,
        "smsOptIn": false,
        "countryCodeMobile": "xyz789",
        "createdDate": "2007-12-03",
        "taxId": "abc123",
        "accessCode2": "xyz789",
        "globalNumNationalMasterAccount": 987,
        "globalNumNationalFranchiseAccount": 987,
        "accessCode2Type": 123,
        "tenantEventsOptOut": 123,
        "additionalTitle": "abc123",
        "additionalFirstName": "abc123",
        "additionalMiddleInitial": "abc123",
        "additionalLastName": "abc123",
        "additionalAddressLine1": "xyz789",
        "additionalAddressLine2": "xyz789",
        "additionalCity": "xyz789",
        "additionalRegion": "abc123",
        "additionalPostalCode": "xyz789",
        "additionalCountry": "abc123",
        "additionalPhone": "xyz789",
        "additionalEmail": "xyz789",
        "ledgerId": 123,
        "isOverlocked": true,
        "sitelinkUnitId": 123,
        "unitName": "abc123",
        "chargeBalance": 123.45,
        "paidThruDate": "2007-12-03",
        "utcBigint": "xyz789",
        "totalDue": 987.65,
        "leaseNumber": 123,
        "moveInDate": "2007-12-03",
        "rentAmount": 987.65,
        "billingFrequency": "abc123",
        "isInvoiced": true,
        "anniversaryDate": "2007-12-03",
        "timeZoneId": 123,
        "taxRateRent": 123.45,
        "insurancePremium": 987.65,
        "taxRateInsurance": 123.45,
        "defaultLeaseNumber": 123,
        "disabledWebAccess": 123,
        "purchaseOrderCode": "xyz789",
        "excludeFromInsurance": true,
        "tenantName": "abc123",
        "address": "xyz789",
        "contactInfo": "abc123",
        "invoiceDeliveryType": 123,
        "scheduledOutDate": "2007-12-03",
        "autoBillType": "NONE",
        "unit": Unit,
        "nextPaymentDue": "2007-12-03",
        "nextPayment": 987.65
      }
    ]
  }
}

nearByLocations

Response

Returns a LocationResults!

Arguments
Name Description
from - Int
size - Int
sort - SORT
sortBy - String
search - String Search
identifier - String! Location identifier
distance - Int Distance. Default = 25
features - [String!] Features
showHidden - Boolean Show hidden locations. Default = false
showTraining - Boolean Show training locations. Default = false
showCommercial - Boolean Show commercial locations. Default = false

Example

Query
query nearByLocations(
  $from: Int,
  $size: Int,
  $sort: SORT,
  $sortBy: String,
  $search: String,
  $identifier: String!,
  $distance: Int,
  $features: [String!],
  $showHidden: Boolean,
  $showTraining: Boolean,
  $showCommercial: Boolean
) {
  nearByLocations(
    from: $from,
    size: $size,
    sort: $sort,
    sortBy: $sortBy,
    search: $search,
    identifier: $identifier,
    distance: $distance,
    features: $features,
    showHidden: $showHidden,
    showTraining: $showTraining,
    showCommercial: $showCommercial
  ) {
    total
    locations {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
  }
}
Variables
{
  "from": 987,
  "size": 123,
  "sort": "ASC",
  "sortBy": "abc123",
  "search": "abc123",
  "identifier": "abc123",
  "distance": 25,
  "features": ["xyz789"],
  "showHidden": false,
  "showTraining": false,
  "showCommercial": false
}
Response
{
  "data": {
    "nearByLocations": {
      "total": 123,
      "locations": [Location]
    }
  }
}

notification

Response

Returns a Notification!

Arguments
Name Description
id - ID!

Example

Query
query notification($id: ID!) {
  notification(id: $id) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Variables
{"id": 4}
Response
{
  "data": {
    "notification": {
      "id": "4",
      "twilioId": "abc123",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "abc123",
      "agentCallSid": "abc123",
      "clientCallSid": "xyz789",
      "managerCallSid": "abc123",
      "agent": User,
      "callDuration": 123,
      "recordingDuration": 987,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "abc123",
      "recordingSid": "abc123",
      "transcriptionSid": "xyz789",
      "taskSid": "abc123",
      "rejectingAgents": ["abc123"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

notificationByAgentCallSid

Response

Returns a Notification!

Arguments
Name Description
agentCallSid - String!

Example

Query
query notificationByAgentCallSid($agentCallSid: String!) {
  notificationByAgentCallSid(agentCallSid: $agentCallSid) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Variables
{"agentCallSid": "abc123"}
Response
{
  "data": {
    "notificationByAgentCallSid": {
      "id": 4,
      "twilioId": "abc123",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "xyz789",
      "agentCallSid": "xyz789",
      "clientCallSid": "abc123",
      "managerCallSid": "xyz789",
      "agent": User,
      "callDuration": 987,
      "recordingDuration": 987,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "abc123",
      "recordingSid": "xyz789",
      "transcriptionSid": "abc123",
      "taskSid": "abc123",
      "rejectingAgents": ["abc123"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

notificationByConferenceSid

Response

Returns a Notification!

Arguments
Name Description
conferenceSid - String!

Example

Query
query notificationByConferenceSid($conferenceSid: String!) {
  notificationByConferenceSid(conferenceSid: $conferenceSid) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Variables
{"conferenceSid": "abc123"}
Response
{
  "data": {
    "notificationByConferenceSid": {
      "id": 4,
      "twilioId": "xyz789",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "xyz789",
      "agentCallSid": "xyz789",
      "clientCallSid": "xyz789",
      "managerCallSid": "abc123",
      "agent": User,
      "callDuration": 123,
      "recordingDuration": 123,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "xyz789",
      "recordingSid": "xyz789",
      "transcriptionSid": "xyz789",
      "taskSid": "abc123",
      "rejectingAgents": ["xyz789"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

notificationByRecordingSid

Response

Returns a Notification!

Arguments
Name Description
recordingSid - String!

Example

Query
query notificationByRecordingSid($recordingSid: String!) {
  notificationByRecordingSid(recordingSid: $recordingSid) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      unit {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      firstName
      lastName
      email
      phone
      company
      label
      neededAt
      quotedRate
      placedAt
      expiresAt
      followUpAt
      followUps
      createdAt
      updatedAt
      reservationType
      reservationSource
      reservationStatus
      sitelinkId
      sitelinkAttributes {
        siteId
        currencyDecimals
        taxDecimals
        tax1RateRent
        tax2RateRent
        sitelinkReservationId
        sitelinkTenantId
        ledgerId
        sitelinkUnitId
        unitName
        size
        width
        length
        area
        mobile
        climate
        alarm
        power
        inside
        floor
        pushRate
        stdRate
        unitTypeId
        typeName
        chargeTax1
        chargeTax2
        defLeaseNum
        concessionId
        planName
        promoGlobalNum
        promoDescription
        cancellationTypeId
        placedAt
        followUpAt
        followUpLast
        cancelled
        expiresAt
        lease
        daysWorked
        paidReserveFee
        callType
        callTypeDescription
        cancellationReason
        firstName
        middleInitial
        lastName
        tenantName
        company
        commercial
        insurPremium
        leaseNum
        autoBillType
        autoBillTypeDescription
        invoice
        schedRent
        schedRentStart
        employeeName
        employeeFollowUp
        employeeConvertedToRes
        employeeConvertedToMoveIn
        employeeNameInitials
        employeeFollowUpInitials
        employeeConvertedToResInitials
        employeeConvertedToMoveInInitials
        inquiryType
        inquiryTypeDescription
        marketingId
        marketingDescription
        rentalTypeId
        rentalTypeDescription
        convertedToRsv
        neededAt
        cancellationReason1
        email
        comment
        phone
        globalWaitingNum
        source
        postalCode
        callerID
        trackingNum
        inquiryConvertedToLease
        reservationConvertedToLease
        rateQuoted
      }
      notes {
        workerNote
        createdDate
      }
      adSource
      marketingSource
      canSendTexts
      isStorageDefenderSelected
    }
    tenant {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      reservations {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        firstName
        lastName
        email
        phone
        company
        label
        neededAt
        quotedRate
        placedAt
        expiresAt
        followUpAt
        followUps
        createdAt
        updatedAt
        reservationType
        reservationSource
        reservationStatus
        sitelinkId
        sitelinkAttributes {
          siteId
          currencyDecimals
          taxDecimals
          tax1RateRent
          tax2RateRent
          sitelinkReservationId
          sitelinkTenantId
          ledgerId
          sitelinkUnitId
          unitName
          size
          width
          length
          area
          mobile
          climate
          alarm
          power
          inside
          floor
          pushRate
          stdRate
          unitTypeId
          typeName
          chargeTax1
          chargeTax2
          defLeaseNum
          concessionId
          planName
          promoGlobalNum
          promoDescription
          cancellationTypeId
          placedAt
          followUpAt
          followUpLast
          cancelled
          expiresAt
          lease
          daysWorked
          paidReserveFee
          callType
          callTypeDescription
          cancellationReason
          firstName
          middleInitial
          lastName
          tenantName
          company
          commercial
          insurPremium
          leaseNum
          autoBillType
          autoBillTypeDescription
          invoice
          schedRent
          schedRentStart
          employeeName
          employeeFollowUp
          employeeConvertedToRes
          employeeConvertedToMoveIn
          employeeNameInitials
          employeeFollowUpInitials
          employeeConvertedToResInitials
          employeeConvertedToMoveInInitials
          inquiryType
          inquiryTypeDescription
          marketingId
          marketingDescription
          rentalTypeId
          rentalTypeDescription
          convertedToRsv
          neededAt
          cancellationReason1
          email
          comment
          phone
          globalWaitingNum
          source
          postalCode
          callerID
          trackingNum
          inquiryConvertedToLease
          reservationConvertedToLease
          rateQuoted
        }
        notes {
          workerNote
          createdDate
        }
        adSource
        marketingSource
        canSendTexts
        isStorageDefenderSelected
      }
      units {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        tenant {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          reservations {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            unit {
              ...UnitFragment
            }
            firstName
            lastName
            email
            phone
            company
            label
            neededAt
            quotedRate
            placedAt
            expiresAt
            followUpAt
            followUps
            createdAt
            updatedAt
            reservationType
            reservationSource
            reservationStatus
            sitelinkId
            sitelinkAttributes {
              ...SitelinkReservationFragment
            }
            notes {
              ...SitelinkReservationNoteFragment
            }
            adSource
            marketingSource
            canSendTexts
            isStorageDefenderSelected
          }
          units {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          title
          company
          firstName
          lastName
          email
          address
          address2
          city
          region
          postalCode
          country
          phone
          mobilePhone
          pastDue
          daysPastDue
          paidThru
          currentBalance
          status
          isCompany
          isActiveMilitary
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            sitelinkTenantId
            siteId
            employeeId
            gateCode
            password
            mrMrs
            firstName
            middleInitial
            lastName
            company
            address
            address2
            city
            region
            postalCode
            country
            phone
            alternateMrMrs
            alternateFirstName
            alternateMiddleInitial
            alternateLastName
            alternateAddress1
            alternateAddress2
            alternateCity
            alternateRegion
            alternatePostalCode
            alternateCountry
            alternatePhone
            employer
            businessMrMrs
            businessFirstName
            businessMiddleInitial
            businessLastName
            businessCompany
            businessAddress1
            businessAddress2
            businessCity
            businessRegion
            businessPostalCode
            businessCountry
            businessPhone
            fax
            email
            alternateEmail
            businessEmail
            pager
            mobile
            isCommercial
            taxExempt
            special
            neverLockOut
            companyIsTenant
            onWaitingList
            noChecks
            dateOfBirth
            iconList
            taxExemptCode
            tenantNote
            primaryPic
            picFileN1
            picFileN2
            picFileN3
            picFileN4
            picFileN5
            picFileN6
            picFileN7
            picFileN8
            picFileN9
            license
            licenseRegion
            ssn
            marketingId
            gender
            marketingDistanceId
            marketingWhatId
            marketingReasonId
            marketingWhyId
            marketingTypeId
            permanent
            walkInPOS
            webSecurityQ
            webSecurityQA
            longitude
            latitude
            specialAlert
            deleted
            updated
            uTS
            oldPK
            archived
            howManyOtherStorageCosDidYouContact
            usedSelfStorageInThePast
            permanentGateLockout
            exitSurveyTaken
            exitComment
            exitOnEmailOfferList
            exitWhenNeedAgain
            marketingExitRentAgainId
            marketingExitReasonId
            marketingExitSatisfactionId
            relationshipAlt
            exitSatCleanliness
            exitSatSafety
            exitSatServices
            exitSatStaff
            exitSatPrice
            didYouVisitWebSite
            tenantGlobalNum
            blackListRating
            smsOptIn
            countryCodeMobile
            created
            taxId
            accessCode2
            globalNumNationalMasterAccount
            globalNumNationalFranchiseAccount
            accessCode2Type
            tenEventsOptOut
            additionalMrMrs
            additionalFirstName
            additionalMiddleInitial
            additionalLastName
            additionalAddress1
            additionalAddress2
            additionalCity
            additionalRegion
            additionalPostalCode
            additionalCountry
            additionalPhone
            additionalEmail
            hasActiveLedger
            allowFacilityAccess
          }
          gateCode
          token
        }
        style
        displayStyle
        name
        size
        sizeGroup
        floor
        floorName
        width
        length
        height
        area
        basePrice
        price
        tier
        displayTier
        isAvailable
        groupTags
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          retCode
          unitTypeId
          typeName
          defLeaseNum
          sitelinkUnitId
          unitName
          width
          length
          climate
          stdRate
          rented
          inside
          power
          alarm
          floor
          waitingListReserved
          movedOut
          corporate
          rentable
          deleted
          boardRate
          unitNote
          pushRate
          tax1Rate
          tax2Rate
          unitDesc
          stdWeeklyRate
          mapTop
          mapLeft
          mapTheta
          mapReversWL
          entryLoc
          doorType
          ada
          stdSecDep
          mobile
          siteId
          locationIdentifier
          pushRateNotRounded
          rmRoundTo
          serviceRequired
          daysVacant
          excludeFromWebsite
          defaultCoverageId
          webRate
          preferredRate
          preferredChannelType
          preferredIsPushRate
        }
        lock {
          id
          name
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          keys {
            id
            userType
            createdAt
            updatedAt
          }
          isSetup
          createdAt
          updatedAt
        }
      }
      title
      company
      firstName
      lastName
      email
      address
      address2
      city
      region
      postalCode
      country
      phone
      mobilePhone
      pastDue
      daysPastDue
      paidThru
      currentBalance
      status
      isCompany
      isActiveMilitary
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        sitelinkTenantId
        siteId
        employeeId
        gateCode
        password
        mrMrs
        firstName
        middleInitial
        lastName
        company
        address
        address2
        city
        region
        postalCode
        country
        phone
        alternateMrMrs
        alternateFirstName
        alternateMiddleInitial
        alternateLastName
        alternateAddress1
        alternateAddress2
        alternateCity
        alternateRegion
        alternatePostalCode
        alternateCountry
        alternatePhone
        employer
        businessMrMrs
        businessFirstName
        businessMiddleInitial
        businessLastName
        businessCompany
        businessAddress1
        businessAddress2
        businessCity
        businessRegion
        businessPostalCode
        businessCountry
        businessPhone
        fax
        email
        alternateEmail
        businessEmail
        pager
        mobile
        isCommercial
        taxExempt
        special
        neverLockOut
        companyIsTenant
        onWaitingList
        noChecks
        dateOfBirth
        iconList
        taxExemptCode
        tenantNote
        primaryPic
        picFileN1
        picFileN2
        picFileN3
        picFileN4
        picFileN5
        picFileN6
        picFileN7
        picFileN8
        picFileN9
        license
        licenseRegion
        ssn
        marketingId
        gender
        marketingDistanceId
        marketingWhatId
        marketingReasonId
        marketingWhyId
        marketingTypeId
        permanent
        walkInPOS
        webSecurityQ
        webSecurityQA
        longitude
        latitude
        specialAlert
        deleted
        updated
        uTS
        oldPK
        archived
        howManyOtherStorageCosDidYouContact
        usedSelfStorageInThePast
        permanentGateLockout
        exitSurveyTaken
        exitComment
        exitOnEmailOfferList
        exitWhenNeedAgain
        marketingExitRentAgainId
        marketingExitReasonId
        marketingExitSatisfactionId
        relationshipAlt
        exitSatCleanliness
        exitSatSafety
        exitSatServices
        exitSatStaff
        exitSatPrice
        didYouVisitWebSite
        tenantGlobalNum
        blackListRating
        smsOptIn
        countryCodeMobile
        created
        taxId
        accessCode2
        globalNumNationalMasterAccount
        globalNumNationalFranchiseAccount
        accessCode2Type
        tenEventsOptOut
        additionalMrMrs
        additionalFirstName
        additionalMiddleInitial
        additionalLastName
        additionalAddress1
        additionalAddress2
        additionalCity
        additionalRegion
        additionalPostalCode
        additionalCountry
        additionalPhone
        additionalEmail
        hasActiveLedger
        allowFacilityAccess
      }
      gateCode
      token
    }
    unit {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        title
        company
        firstName
        lastName
        email
        address
        address2
        city
        region
        postalCode
        country
        phone
        mobilePhone
        pastDue
        daysPastDue
        paidThru
        currentBalance
        status
        isCompany
        isActiveMilitary
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          sitelinkTenantId
          siteId
          employeeId
          gateCode
          password
          mrMrs
          firstName
          middleInitial
          lastName
          company
          address
          address2
          city
          region
          postalCode
          country
          phone
          alternateMrMrs
          alternateFirstName
          alternateMiddleInitial
          alternateLastName
          alternateAddress1
          alternateAddress2
          alternateCity
          alternateRegion
          alternatePostalCode
          alternateCountry
          alternatePhone
          employer
          businessMrMrs
          businessFirstName
          businessMiddleInitial
          businessLastName
          businessCompany
          businessAddress1
          businessAddress2
          businessCity
          businessRegion
          businessPostalCode
          businessCountry
          businessPhone
          fax
          email
          alternateEmail
          businessEmail
          pager
          mobile
          isCommercial
          taxExempt
          special
          neverLockOut
          companyIsTenant
          onWaitingList
          noChecks
          dateOfBirth
          iconList
          taxExemptCode
          tenantNote
          primaryPic
          picFileN1
          picFileN2
          picFileN3
          picFileN4
          picFileN5
          picFileN6
          picFileN7
          picFileN8
          picFileN9
          license
          licenseRegion
          ssn
          marketingId
          gender
          marketingDistanceId
          marketingWhatId
          marketingReasonId
          marketingWhyId
          marketingTypeId
          permanent
          walkInPOS
          webSecurityQ
          webSecurityQA
          longitude
          latitude
          specialAlert
          deleted
          updated
          uTS
          oldPK
          archived
          howManyOtherStorageCosDidYouContact
          usedSelfStorageInThePast
          permanentGateLockout
          exitSurveyTaken
          exitComment
          exitOnEmailOfferList
          exitWhenNeedAgain
          marketingExitRentAgainId
          marketingExitReasonId
          marketingExitSatisfactionId
          relationshipAlt
          exitSatCleanliness
          exitSatSafety
          exitSatServices
          exitSatStaff
          exitSatPrice
          didYouVisitWebSite
          tenantGlobalNum
          blackListRating
          smsOptIn
          countryCodeMobile
          created
          taxId
          accessCode2
          globalNumNationalMasterAccount
          globalNumNationalFranchiseAccount
          accessCode2Type
          tenEventsOptOut
          additionalMrMrs
          additionalFirstName
          additionalMiddleInitial
          additionalLastName
          additionalAddress1
          additionalAddress2
          additionalCity
          additionalRegion
          additionalPostalCode
          additionalCountry
          additionalPhone
          additionalEmail
          hasActiveLedger
          allowFacilityAccess
        }
        gateCode
        token
      }
      style
      displayStyle
      name
      size
      sizeGroup
      floor
      floorName
      width
      length
      height
      area
      basePrice
      price
      tier
      displayTier
      isAvailable
      groupTags
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        retCode
        unitTypeId
        typeName
        defLeaseNum
        sitelinkUnitId
        unitName
        width
        length
        climate
        stdRate
        rented
        inside
        power
        alarm
        floor
        waitingListReserved
        movedOut
        corporate
        rentable
        deleted
        boardRate
        unitNote
        pushRate
        tax1Rate
        tax2Rate
        unitDesc
        stdWeeklyRate
        mapTop
        mapLeft
        mapTheta
        mapReversWL
        entryLoc
        doorType
        ada
        stdSecDep
        mobile
        siteId
        locationIdentifier
        pushRateNotRounded
        rmRoundTo
        serviceRequired
        daysVacant
        excludeFromWebsite
        defaultCoverageId
        webRate
        preferredRate
        preferredChannelType
        preferredIsPushRate
      }
      lock {
        id
        name
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        unit {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          style
          displayStyle
          name
          size
          sizeGroup
          floor
          floorName
          width
          length
          height
          area
          basePrice
          price
          tier
          displayTier
          isAvailable
          groupTags
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            retCode
            unitTypeId
            typeName
            defLeaseNum
            sitelinkUnitId
            unitName
            width
            length
            climate
            stdRate
            rented
            inside
            power
            alarm
            floor
            waitingListReserved
            movedOut
            corporate
            rentable
            deleted
            boardRate
            unitNote
            pushRate
            tax1Rate
            tax2Rate
            unitDesc
            stdWeeklyRate
            mapTop
            mapLeft
            mapTheta
            mapReversWL
            entryLoc
            doorType
            ada
            stdSecDep
            mobile
            siteId
            locationIdentifier
            pushRateNotRounded
            rmRoundTo
            serviceRequired
            daysVacant
            excludeFromWebsite
            defaultCoverageId
            webRate
            preferredRate
            preferredChannelType
            preferredIsPushRate
          }
          lock {
            id
            name
            location {
              ...LocationFragment
            }
            unit {
              ...UnitFragment
            }
            keys {
              ...LockKeyFragment
            }
            isSetup
            createdAt
            updatedAt
          }
        }
        keys {
          id
          userType
          createdAt
          updatedAt
        }
        isSetup
        createdAt
        updatedAt
      }
    }
    notificationType
    conferenceSid
    agentCallSid
    clientCallSid
    managerCallSid
    agent {
      id
      firstName
      lastName
      label
      email
      authMethod
      address
      address2
      city
      region
      postalCode
      country
      phone
      role
      status
      twilioNumber
      twilioWorkerSid
      twilioStatusUpdatedAt
      managedLocations {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      wordpressId
      createdAt
      updatedAt
    }
    callDuration
    recordingDuration
    callDirection
    detailType
    transcriptionText
    recordingSid
    transcriptionSid
    taskSid
    rejectingAgents
    createdAt
    updatedAt
  }
}
Variables
{"recordingSid": "abc123"}
Response
{
  "data": {
    "notificationByRecordingSid": {
      "id": 4,
      "twilioId": "xyz789",
      "location": Location,
      "reservation": Reservation,
      "tenant": Tenant,
      "unit": Unit,
      "notificationType": "CALL",
      "conferenceSid": "abc123",
      "agentCallSid": "abc123",
      "clientCallSid": "abc123",
      "managerCallSid": "xyz789",
      "agent": User,
      "callDuration": 123,
      "recordingDuration": 987,
      "callDirection": "INCOMING",
      "detailType": "UNKNOWN",
      "transcriptionText": "xyz789",
      "recordingSid": "xyz789",
      "transcriptionSid": "xyz789",
      "taskSid": "abc123",
      "rejectingAgents": ["abc123"],
      "createdAt": "2007-12-03",
      "updatedAt": "2007-12-03"
    }
  }
}

notificationByTwilioId

Response

Returns a Notification!

Arguments
Name Description
twilioId - String!

Example

Query
query notificationByTwilioId($twilioId: String!) {
  notificationByTwilioId(twilioId: $twilioId) {
    id
    twilioId
    location {
      id
      identifier
      sitelinkSafeIdentifier
      name
      description
      aboutUs
      gateCodeDirections
      phone
      fax
      webPhone
      address
      address2
      city
      region
      postalCode
      country
      coordinates {
        lat
        lon
      }
      officeAddress
      officeAddress2
      officeCity
      officeRegion
      officePostalCode
      officeCountry
      officeCoordinates {
        lat
        lon
      }
      contact {
        name
        email
        phone
        address
        address2
        city
        region
        postalCode
        country
      }
      url
      office247
      officeHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      access247
      accessHours {
        monday {
          closed
          open
          close
        }
        tuesday {
          closed
          open
          close
        }
        wednesday {
          closed
          open
          close
        }
        thursday {
          closed
          open
          close
        }
        friday {
          closed
          open
          close
        }
        saturday {
          closed
          open
          close
        }
        sunday {
          closed
          open
          close
        }
      }
      holidayHours {
        name
        rule
        open
        close
        open247
        closed
        hoursType
      }
      timezone
      auctionUrl
      moveInDateRange
      moveOutDateRange
      faqs {
        order
        question
        answer
      }
      insurancePlans {
        insuranceId
        siteId
        coverage
        premium
        theftCoveragePercentage
        coverageDescription
        provider
        brochureUrl
        certificateUrl
        isDefault
        name
      }
      discountPlans {
        concessionId
        siteId
        qtTouchDiscountPlanId
        planNameTermId
        concessionGlobalNumber
        defaultPlanName
        planName
        description
        comment
        planStart
        planEnd
        showOn
        neverExpires
        expirationMonths
        prepay
        onPayment
        manualCredit
        prepaidMonths
        inMonth
        amountType
        changeAmount
        fixedDiscount
        percentageDiscount
        round
        roundTo
      }
      features {
        id
        name
        iconName
        createdAt
        updatedAt
      }
      unitTypeFeatures {
        id
        identifier
        name
        description
        icon
        isSearchable
        isAvailable
        isVisible
        createdAt
        updatedAt
      }
      unitTypeStyles
      unitTypeSizeGroups
      images {
        id
        filename
        originalUrl
        url
        createdAt
        updatedAt
      }
      createdAt
      updatedAt
      sitelinkId
      sitelinkAttributes {
        siteId
        locationIdentifier
        siteRegionCode
        contactName
        emailAddress
        siteName
        siteAddress1
        siteAddress2
        siteCity
        siteRegion
        sitePostalCode
        siteCountry
        sitePhone
        siteFax
        websiteUrl
        legalName
        closedWeekdays
        closedSaturday
        closedSunday
        weekdayStart
        weekdayEnd
        saturdayStart
        saturdayEnd
        sundayStart
        sundayEnd
        businessType
        longitude
        latitude
        distance
        inquiryReservationStarting
        inquiriesNew
        reservationsNew
        inquiryReservationPending
        followupsMade
        inquiryReservationCancelled
        inquiryReservationExpired
        inquiryReservationConvertedToLease
        divisionName
        divisionDescription
        weekdayStartText
        weekdayEndText
        saturdayStartText
        saturdayEndText
        sundayStartText
        sundayEndText
      }
      sitelinkLastImport
      allowLockerPricing
      leaseUp
      isCommercial
      isTraining
      isHidden
      notes {
        note
        createdAt
      }
      isAnnexFacility
      annexPrefix
      startingWidth
      startingLength
      displayStartingSize
      startingPrice
      distance
      metaTitle
      metaDescription
      autopayDiscountDisabled
      hasBanner
      bannerMessage
      bannerStartDate
      bannerEndDate
      bannerBackgroundColor
      managers {
        id
        firstName
        lastName
        label
        email
        authMethod
        address
        address2
        city
        region
        postalCode
        country
        phone
        role
        status
        twilioNumber
        twilioWorkerSid
        twilioStatusUpdatedAt
        managedLocations {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        wordpressId
        createdAt
        updatedAt
      }
      paymentTypes {
        paymentTypeId
        paymentTypeDesc
        category
        creditCardType
      }
      lastTimeSitelinkUnitsPolled
      hasAdminFee
      adminFee
      hasFacilityFee
      facilityFee
      hasFacilityMap
      facilityMapAssetId
      facilityMapId
      facilityMapFloors {
        id
        assetId
        name
        label
        shortLabel
        level
        sort
        createdAt
        updatedAt
      }
      dynamicPricingEnabled
      primeLocksEnabled
      isStorageDefenderAvailable
      storageDefenderFee
      storageDefenderSitelinkId
    }
    reservation {
      id
      location {
        id
        identifier
        sitelinkSafeIdentifier
        name
        description
        aboutUs
        gateCodeDirections
        phone
        fax
        webPhone
        address
        address2
        city
        region
        postalCode
        country
        coordinates {
          lat
          lon
        }
        officeAddress
        officeAddress2
        officeCity
        officeRegion
        officePostalCode
        officeCountry
        officeCoordinates {
          lat
          lon
        }
        contact {
          name
          email
          phone
          address
          address2
          city
          region
          postalCode
          country
        }
        url
        office247
        officeHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        access247
        accessHours {
          monday {
            closed
            open
            close
          }
          tuesday {
            closed
            open
            close
          }
          wednesday {
            closed
            open
            close
          }
          thursday {
            closed
            open
            close
          }
          friday {
            closed
            open
            close
          }
          saturday {
            closed
            open
            close
          }
          sunday {
            closed
            open
            close
          }
        }
        holidayHours {
          name
          rule
          open
          close
          open247
          closed
          hoursType
        }
        timezone
        auctionUrl
        moveInDateRange
        moveOutDateRange
        faqs {
          order
          question
          answer
        }
        insurancePlans {
          insuranceId
          siteId
          coverage
          premium
          theftCoveragePercentage
          coverageDescription
          provider
          brochureUrl
          certificateUrl
          isDefault
          name
        }
        discountPlans {
          concessionId
          siteId
          qtTouchDiscountPlanId
          planNameTermId
          concessionGlobalNumber
          defaultPlanName
          planName
          description
          comment
          planStart
          planEnd
          showOn
          neverExpires
          expirationMonths
          prepay
          onPayment
          manualCredit
          prepaidMonths
          inMonth
          amountType
          changeAmount
          fixedDiscount
          percentageDiscount
          round
          roundTo
        }
        features {
          id
          name
          iconName
          createdAt
          updatedAt
        }
        unitTypeFeatures {
          id
          identifier
          name
          description
          icon
          isSearchable
          isAvailable
          isVisible
          createdAt
          updatedAt
        }
        unitTypeStyles
        unitTypeSizeGroups
        images {
          id
          filename
          originalUrl
          url
          createdAt
          updatedAt
        }
        createdAt
        updatedAt
        sitelinkId
        sitelinkAttributes {
          siteId
          locationIdentifier
          siteRegionCode
          contactName
          emailAddress
          siteName
          siteAddress1
          siteAddress2
          siteCity
          siteRegion
          sitePostalCode
          siteCountry
          sitePhone
          siteFax
          websiteUrl
          legalName
          closedWeekdays
          closedSaturday
          closedSunday
          weekdayStart
          weekdayEnd
          saturdayStart
          saturdayEnd
          sundayStart
          sundayEnd
          businessType
          longitude
          latitude
          distance
          inquiryReservationStarting
          inquiriesNew
          reservationsNew
          inquiryReservationPending
          followupsMade
          inquiryReservationCancelled
          inquiryReservationExpired
          inquiryReservationConvertedToLease
          divisionName
          divisionDescription
          weekdayStartText
          weekdayEndText
          saturdayStartText
          saturdayEndText
          sundayStartText
          sundayEndText
        }
        sitelinkLastImport
        allowLockerPricing
        leaseUp
        isCommercial
        isTraining
        isHidden
        notes {
          note
          createdAt
        }
        isAnnexFacility
        annexPrefix
        startingWidth
        startingLength
        displayStartingSize
        startingPrice
        distance
        metaTitle
        metaDescription
        autopayDiscountDisabled
        hasBanner
        bannerMessage
        bannerStartDate
        bannerEndDate
        bannerBackgroundColor
        managers {
          id
          firstName
          lastName
          label
          email
          authMethod
          address
          address2
          city
          region
          postalCode
          country
          phone
          role
          status
          twilioNumber
          twilioWorkerSid
          twilioStatusUpdatedAt
          managedLocations {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          wordpressId
          createdAt
          updatedAt
        }
        paymentTypes {
          paymentTypeId
          paymentTypeDesc
          category
          creditCardType
        }
        lastTimeSitelinkUnitsPolled
        hasAdminFee
        adminFee
        hasFacilityFee
        facilityFee
        hasFacilityMap
        facilityMapAssetId
        facilityMapId
        facilityMapFloors {
          id
          assetId
          name
          label
          shortLabel
          level
          sort
          createdAt
          updatedAt
        }
        dynamicPricingEnabled
        primeLocksEnabled
        isStorageDefenderAvailable
        storageDefenderFee
        storageDefenderSitelinkId
      }
      tenant {
        id
        location {
          id
          identifier
          sitelinkSafeIdentifier
          name
          description
          aboutUs
          gateCodeDirections
          phone
          fax
          webPhone
          address
          address2
          city
          region
          postalCode
          country
          coordinates {
            lat
            lon
          }
          officeAddress
          officeAddress2
          officeCity
          officeRegion
          officePostalCode
          officeCountry
          officeCoordinates {
            lat
            lon
          }
          contact {
            name
            email
            phone
            address
            address2
            city
            region
            postalCode
            country
          }
          url
          office247
          officeHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          access247
          accessHours {
            monday {
              ...WeeklyHoursDayFragment
            }
            tuesday {
              ...WeeklyHoursDayFragment
            }
            wednesday {
              ...WeeklyHoursDayFragment
            }
            thursday {
              ...WeeklyHoursDayFragment
            }
            friday {
              ...WeeklyHoursDayFragment
            }
            saturday {
              ...WeeklyHoursDayFragment
            }
            sunday {
              ...WeeklyHoursDayFragment
            }
          }
          holidayHours {
            name
            rule
            open
            close
            open247
            closed
            hoursType
          }
          timezone
          auctionUrl
          moveInDateRange
          moveOutDateRange
          faqs {
            order
            question
            answer
          }
          insurancePlans {
            insuranceId
            siteId
            coverage
            premium
            theftCoveragePercentage
            coverageDescription
            provider
            brochureUrl
            certificateUrl
            isDefault
            name
          }
          discountPlans {
            concessionId
            siteId
            qtTouchDiscountPlanId
            planNameTermId
            concessionGlobalNumber
            defaultPlanName
            planName
            description
            comment
            planStart
            planEnd
            showOn
            neverExpires
            expirationMonths
            prepay
            onPayment
            manualCredit
            prepaidMonths
            inMonth
            amountType
            changeAmount
            fixedDiscount
            percentageDiscount
            round
            roundTo
          }
          features {
            id
            name
            iconName
            createdAt
            updatedAt
          }
          unitTypeFeatures {
            id
            identifier
            name
            description
            icon
            isSearchable
            isAvailable
            isVisible
            createdAt
            updatedAt
          }
          unitTypeStyles
          unitTypeSizeGroups
          images {
            id
            filename
            originalUrl
            url
            createdAt
            updatedAt
          }
          createdAt
          updatedAt
          sitelinkId
          sitelinkAttributes {
            siteId
            locationIdentifier
            siteRegionCode
            contactName
            emailAddress
            siteName
            siteAddress1
            siteAddress2
            siteCity
            siteRegion
            sitePostalCode
            siteCountry
            sitePhone
            siteFax
            websiteUrl
            legalName
            closedWeekdays
            closedSaturday
            closedSunday
            weekdayStart
            weekdayEnd
            saturdayStart
            saturdayEnd
            sundayStart
            sundayEnd
            businessType
            longitude
            latitude
            distance
            inquiryReservationStarting
            inquiriesNew
            reservationsNew
            inquiryReservationPending
            followupsMade
            inquiryReservationCancelled
            inquiryReservationExpired
            inquiryReservationConvertedToLease
            divisionName
            divisionDescription
            weekdayStartText
            weekdayEndText
            saturdayStartText
            saturdayEndText
            sundayStartText
            sundayEndText
          }
          sitelinkLastImport
          allowLockerPricing
          leaseUp
          isCommercial
          isTraining
          isHidden
          notes {
            note
            createdAt
          }
          isAnnexFacility
          annexPrefix
          startingWidth
          startingLength
          displayStartingSize
          startingPrice
          distance
          metaTitle
          metaDescription
          autopayDiscountDisabled
          hasBanner
          bannerMessage
          bannerStartDate
          bannerEndDate
          bannerBackgroundColor
          managers {
            id
            firstName
            lastName
            label
            email
            authMethod
            address
            address2
            city
            region
            postalCode
            country
            phone
            role
            status
            twilioNumber
            twilioWorkerSid
            twilioStatusUpdatedAt
            managedLocations {
              ...LocationFragment
            }
            wordpressId
            createdAt
            updatedAt
          }
          paymentTypes {
            paymentTypeId
            paymentTypeDesc
            category
            creditCardType
          }
          lastTimeSitelinkUnitsPolled
          hasAdminFee
          adminFee
          hasFacilityFee
          facilityFee
          hasFacilityMap
          facilityMapAssetId
          facilityMapId
          facilityMapFloors {
            id
            assetId
            name
            label
            shortLabel
            level
            sort
            createdAt
            updatedAt
          }
          dynamicPricingEnabled
          primeLocksEnabled
          isStorageDefenderAvailable
          storageDefenderFee
          storageDefenderSitelinkId
        }
        reservations {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor
            managers {
              ...UserFragment
            }
            paymentTypes {
              ...PaymentTypeFragment
            }
            lastTimeSitelinkUnitsPolled
            hasAdminFee
            adminFee
            hasFacilityFee
            facilityFee
            hasFacilityMap
            facilityMapAssetId
            facilityMapId
            facilityMapFloors {
              ...FacilityMapFloorFragment
            }
            dynamicPricingEnabled
            primeLocksEnabled
            isStorageDefenderAvailable
            storageDefenderFee
            storageDefenderSitelinkId
          }
          tenant {
            id
            location {
              ...LocationFragment
            }
            reservations {
              ...ReservationFragment
            }
            units {
              ...UnitFragment
            }
            title
            company
            firstName
            lastName
            email
            address
            address2
            city
            region
            postalCode
            country
            phone
            mobilePhone
            pastDue
            daysPastDue
            paidThru
            currentBalance
            status
            isCompany
            isActiveMilitary
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkTenantFragment
            }
            gateCode
            token
          }
          unit {
            id
            location {
              ...LocationFragment
            }
            tenant {
              ...TenantFragment
            }
            style
            displayStyle
            name
            size
            sizeGroup
            floor
            floorName
            width
            length
            height
            area
            basePrice
            price
            tier
            displayTier
            isAvailable
            groupTags
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkUnitFragment
            }
            lock {
              ...LockFragment
            }
          }
          firstName
          lastName
          email
          phone
          company
          label
          neededAt
          quotedRate
          placedAt
          expiresAt
          followUpAt
          followUps
          createdAt
          updatedAt
          reservationType
          reservationSource
          reservationStatus
          sitelinkId
          sitelinkAttributes {
            siteId
            currencyDecimals
            taxDecimals
            tax1RateRent
            tax2RateRent
            sitelinkReservationId
            sitelinkTenantId
            ledgerId
            sitelinkUnitId
            unitName
            size
            width
            length
            area
            mobile
            climate
            alarm
            power
            inside
            floor
            pushRate
            stdRate
            unitTypeId
            typeName
            chargeTax1
            chargeTax2
            defLeaseNum
            concessionId
            planName
            promoGlobalNum
            promoDescription
            cancellationTypeId
            placedAt
            followUpAt
            followUpLast
            cancelled
            expiresAt
            lease
            daysWorked
            paidReserveFee
            callType
            callTypeDescription
            cancellationReason
            firstName
            middleInitial
            lastName
            tenantName
            company
            commercial
            insurPremium
            leaseNum
            autoBillType
            autoBillTypeDescription
            invoice
            schedRent
            schedRentStart
            employeeName
            employeeFollowUp
            employeeConvertedToRes
            employeeConvertedToMoveIn
            employeeNameInitials
            employeeFollowUpInitials
            employeeConvertedToResInitials
            employeeConvertedToMoveInInitials
            inquiryType
            inquiryTypeDescription
            marketingId
            marketingDescription
            rentalTypeId
            rentalTypeDescription
            convertedToRsv
            neededAt
            cancellationReason1
            email
            comment
            phone
            globalWaitingNum
            source
            postalCode
            callerID
            trackingNum
            inquiryConvertedToLease
            reservationConvertedToLease
            rateQuoted
          }
          notes {
            workerNote
            createdDate
          }
          adSource
          marketingSource
          canSendTexts
          isStorageDefenderSelected
        }
        units {
          id
          location {
            id
            identifier
            sitelinkSafeIdentifier
            name
            description
            aboutUs
            gateCodeDirections
            phone
            fax
            webPhone
            address
            address2
            city
            region
            postalCode
            country
            coordinates {
              ...GeoCoordinatesFragment
            }
            officeAddress
            officeAddress2
            officeCity
            officeRegion
            officePostalCode
            officeCountry
            officeCoordinates {
              ...GeoCoordinatesFragment
            }
            contact {
              ...ContactFragment
            }
            url
            office247
            officeHours {
              ...WeeklyHoursFragment
            }
            access247
            accessHours {
              ...WeeklyHoursFragment
            }
            holidayHours {
              ...HolidayTimeFragment
            }
            timezone
            auctionUrl
            moveInDateRange
            moveOutDateRange
            faqs {
              ...FaqFragment
            }
            insurancePlans {
              ...InsurancePlanSitelinkFragment
            }
            discountPlans {
              ...SitelinkDiscountPlanFragment
            }
            features {
              ...FeatureFragment
            }
            unitTypeFeatures {
              ...UnitTypeFeatureFragment
            }
            unitTypeStyles
            unitTypeSizeGroups
            images {
              ...ImageFragment
            }
            createdAt
            updatedAt
            sitelinkId
            sitelinkAttributes {
              ...SitelinkLocationFragment
            }
            sitelinkLastImport
            allowLockerPricing
            leaseUp
            isCommercial
            isTraining
            isHidden
            notes {
              ...LocationNoteFragment
            }
            isAnnexFacility
            annexPrefix
            startingWidth
            startingLength
            displayStartingSize
            startingPrice
            distance
            metaTitle
            metaDescription
            autopayDiscountDisabled
            hasBanner
            bannerMessage
            bannerStartDate
            bannerEndDate
            bannerBackgroundColor