Skip to content

Commit

Permalink
Update CustomerRequest.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
matmiranda authored Dec 18, 2018
1 parent 46e272e commit fb0cab1
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions WirecardCSharp/Models/Request/CustomerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,8 @@ public class CustomerRequest
public string Email { get; set; }
[JsonProperty("birthDate", DefaultValueHandling = DefaultValueHandling.Ignore)]
public string BirthDate { get; set; }
[JsonProperty("taxDocument", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Taxdocument Taxdocument { get; set; }
[JsonProperty("phone", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Phone Phone { get; set; }
[JsonProperty("shippingAddress", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Shippingaddress Shippingaddress { get; set; }
[JsonProperty("fundingInstrument", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Fundinginstrument Fundinginstrument { get; set; }
[JsonProperty("taxDocument", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Taxdocument TaxDocument { get; set; }
[JsonProperty("shippingAddress", DefaultValueHandling = DefaultValueHandling.Ignore)]
Expand All @@ -38,4 +32,4 @@ public class CustomerRequest
[JsonProperty("customer", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Customer Customer { get; set; }
}
}
}

0 comments on commit fb0cab1

Please sign in to comment.