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