/// <summary>
 /// Initializes a new instance of the <see cref="GetCreditSupportAnnexResponse" /> class.
 /// </summary>
 /// <param name="href">The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime..</param>
 /// <param name="value">value.</param>
 /// <param name="failed">The credit support annex that could not be updated or inserted along with a reason for failure..</param>
 /// <param name="links">links.</param>
 public GetCreditSupportAnnexResponse(string href = default(string), CreditSupportAnnex value = default(CreditSupportAnnex), Dictionary <string, ErrorDetail> failed = default(Dictionary <string, ErrorDetail>), List <Link> links = default(List <Link>))
 {
     this.Href   = href;
     this.Failed = failed;
     this.Links  = links;
     this.Href   = href;
     this.Value  = value;
     this.Failed = failed;
     this.Links  = links;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UpsertCreditSupportAnnexRequest" /> class.
 /// </summary>
 /// <param name="creditSupportAnnex">creditSupportAnnex.</param>
 public UpsertCreditSupportAnnexRequest(CreditSupportAnnex creditSupportAnnex = default(CreditSupportAnnex))
 {
     this.CreditSupportAnnex = creditSupportAnnex;
 }