PropertyLink
External links for virtual tours, videos, and other web resources.
Note: The class name is
PropertyLink(stored inLink.csfile).
Location
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
};
Link Type Values
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.
Common Link Types (for reference)
- 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
- Download Link.cs - Complete C# source code (PropertyLink class)