Class Relation
Represents a single Relation object returned from the Hudu API
Inheritance
System.Object
Relation
Assembly: HuduAPI.dll
Syntax
public class Relation : IRecord
Properties
Description
Declaration
[JsonProperty("description")]
public object Description { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
FromableID
Declaration
[JsonProperty("fromable_id")]
public int FromableID { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
FromableType
Declaration
[JsonProperty("fromable_type")]
public string FromableType { get; set; }
Property Value
| Type |
Description |
| System.String |
|
FromableUrl
Declaration
[JsonProperty("fromable_url")]
public string FromableUrl { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ID
Declaration
[JsonProperty("id")]
public int ID { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
IsInverse
Declaration
[JsonProperty("is_inverse")]
public bool IsInverse { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Name
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ToableID
Declaration
[JsonProperty("toable_id")]
public int ToableID { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
ToableType
Declaration
[JsonProperty("toable_type")]
public string ToableType { get; set; }
Property Value
| Type |
Description |
| System.String |
|
ToableUrl
Declaration
[JsonProperty("toable_url")]
public string ToableUrl { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Implements