/// <summary>
 /// Initializes a new instance of the SectionsCreateResponse class.
 /// </summary>
 public SectionsCreateResponse(SectionsCreateResponseSection section)
 {
     Section = section;
     CustomInit();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SectionsCreateResponse" /> class.
 /// </summary>
 /// <param name="section">section (required).</param>
 public SectionsCreateResponse(SectionsCreateResponseSection section = default(SectionsCreateResponseSection))
 {
     // to ensure "section" is required (not null)
     this.Section = section ?? throw new ArgumentNullException("section is a required property for SectionsCreateResponse and cannot be null");;
 }