Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2008" /> class.
 /// </summary>
 /// <param name="Uuid">Uuid (required).</param>
 /// <param name="Hbsurface">Hbsurface (required).</param>
 public InlineResponse2008(string Uuid = default(string), HBSurfaceSchema Hbsurface = default(HBSurfaceSchema))
 {
     // to ensure "Uuid" is required (not null)
     if (Uuid == null)
     {
         throw new InvalidDataException("Uuid is a required property for InlineResponse2008 and cannot be null");
     }
     else
     {
         this.Uuid = Uuid;
     }
     // to ensure "Hbsurface" is required (not null)
     if (Hbsurface == null)
     {
         throw new InvalidDataException("Hbsurface is a required property for InlineResponse2008 and cannot be null");
     }
     else
     {
         this.Hbsurface = Hbsurface;
     }
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2007Results" /> class.
 /// </summary>
 /// <param name="Uuid">Uuid.</param>
 /// <param name="Hbsurface">Hbsurface.</param>
 public InlineResponse2007Results(string Uuid = default(string), HBSurfaceSchema Hbsurface = default(HBSurfaceSchema))
 {
     this.Uuid      = Uuid;
     this.Hbsurface = Hbsurface;
 }