/// <summary> /// Initializes a new instance of the <see cref="EArchive" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="type">Type of the resource.</param> /// <param name="attributes">attributes (required).</param> /// <param name="relationships">relationships.</param> public EArchive(string id = default(string), TypeEnum?type = default(TypeEnum?), EArchiveAttributes attributes = default(EArchiveAttributes), CompanyIdeArchivesDataRelationships relationships = default(CompanyIdeArchivesDataRelationships)) { // to ensure "attributes" is required (not null) if (attributes == null) { throw new InvalidDataException("attributes is a required property for EArchive and cannot be null"); } else { this.Attributes = attributes; } this.Id = id; this.Type = type; this.Relationships = relationships; }
/// <summary> /// Initializes a new instance of the <see cref="CompanyIdeArchivesData" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="type">Type of the resource.</param> /// <param name="attributes">attributes.</param> /// <param name="relationships">relationships.</param> public CompanyIdeArchivesData(string id = default(string), TypeEnum?type = default(TypeEnum?), EArchiveFormAttributes attributes = default(EArchiveFormAttributes), CompanyIdeArchivesDataRelationships relationships = default(CompanyIdeArchivesDataRelationships)) { this.Id = id; this.Type = type; this.Attributes = attributes; this.Relationships = relationships; }