Skip to content

PropertyLink

External links for virtual tours, videos, and other web resources.

Note: The class name is PropertyLink (stored in Link.cs file).

Location

docs/models/shared/Link.cs

Properties

Property Type Description Example
Id string Unique identifier for the link "LINK-001"
Text string Link text/description "Virtual Tour"
Url string The URL "https://tour.example.com/property123"
Type int Link category/type as enum from source system (e.g., Vitec linkType) 0, 1, 2, etc.
IsPublic bool Whether link should be publicly visible true, false

Usage Example

var link = new PropertyLink
{
    Id = "LINK-001",
    Text = "360° Virtual Tour",
    Url = "https://matterport.com/show/?m=abc123",
    Type = 1,  // Vitec enum value for link type
    IsPublic = true
};

Note: The exact integer enum values and their meanings depend on the source system (e.g., Vitec). Refer to the source system API documentation for the specific enum mappings.

  • Virtual Tour - 360° interactive tours (Matterport, etc.)
  • Video - YouTube, Vimeo video tours
  • Drone Video - Aerial drone footage
  • Neighborhood Profile - Area information and statistics
  • School Information - Local school ratings/info
  • Transportation - Public transport maps/schedules
  • Project Website - Dedicated project landing page

Used By

  • Estate

Download