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