OBJECT

PropertyPriceChangeLog

Property price change record

link GraphQL Schema definition

  • type PropertyPriceChangeLog {
  • # New advertised price of the property
  • advertisedPrice: String
  • # Old advertised price of the property
  • advertisedPriceWas: String
  • # When the property price change log was created
  • createdAt: ISO8601DateTime!
  • # ID of the Property price change log
  • id: ID!
  • # New price of the property
  • price: Float
  • # Old price of the property
  • priceWas: Float
  • # Property for which the price change log was created
  • property: Property
  • # When the property price change log was last updated
  • updatedAt: ISO8601DateTime!
  • # User ID of the user who created the property price change log
  • user: User
  • # The visible_to_vendor of the property price change
  • visibleToVendor: Boolean!
  • }