Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2003" /> class.
 /// </summary>
 /// <param name="Uuid">Uuid (required).</param>
 /// <param name="Epw">Epw (required).</param>
 public InlineResponse2003(string Uuid = default(string), EpwSchema Epw = default(EpwSchema))
 {
     // to ensure "Uuid" is required (not null)
     if (Uuid == null)
     {
         throw new InvalidDataException("Uuid is a required property for InlineResponse2003 and cannot be null");
     }
     else
     {
         this.Uuid = Uuid;
     }
     // to ensure "Epw" is required (not null)
     if (Epw == null)
     {
         throw new InvalidDataException("Epw is a required property for InlineResponse2003 and cannot be null");
     }
     else
     {
         this.Epw = Epw;
     }
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineResponse2002Results" /> class.
 /// </summary>
 /// <param name="Uuid">Uuid.</param>
 /// <param name="Epw">Epw.</param>
 public InlineResponse2002Results(string Uuid = default(string), EpwSchema Epw = default(EpwSchema))
 {
     this.Uuid = Uuid;
     this.Epw  = Epw;
 }