/// <summary> /// Initializes a new instance of the SectionsCreateResponse class. /// </summary> public SectionsCreateResponse(SectionsCreateResponseSection section) { Section = section; CustomInit(); }
/// <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");; }