Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SpaceCollaborators" /> class.
 /// </summary>
 /// <param name="Links">Links.</param>
 public SpaceCollaborators(GenericLinksRepresentation Links = default(GenericLinksRepresentation))
 {
     this.Links = Links;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SpaceData" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Type">Type.</param>
 /// <param name="Attributes">Attributes.</param>
 /// <param name="Relationships">Relationships.</param>
 /// <param name="Links">Links.</param>
 public SpaceData(string Id = default(string), string Type = default(string), SpaceAttributes Attributes = default(SpaceAttributes), SpaceRelationships Relationships = default(SpaceRelationships), GenericLinksRepresentation Links = default(GenericLinksRepresentation))
 {
     this.Id            = Id;
     this.Type          = Type;
     this.Attributes    = Attributes;
     this.Relationships = Relationships;
     this.Links         = Links;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SpaceOwnedBy" /> class.
 /// </summary>
 /// <param name="Data">Data.</param>
 /// <param name="Links">Links.</param>
 public SpaceOwnedBy(UserData Data = default(UserData), GenericLinksRepresentation Links = default(GenericLinksRepresentation))
 {
     this.Data  = Data;
     this.Links = Links;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UserData" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Type">Type.</param>
 /// <param name="Attributes">Attributes.</param>
 /// <param name="Links">Links.</param>
 public UserData(string Id = default(string), string Type = default(string), UserAttributesRepresentation Attributes = default(UserAttributesRepresentation), GenericLinksRepresentation Links = default(GenericLinksRepresentation))
 {
     this.Id         = Id;
     this.Type       = Type;
     this.Attributes = Attributes;
     this.Links      = Links;
 }