Skip to content

Commit

Permalink
Adiciona alguns campos ao retorno da api de Invoices
Browse files Browse the repository at this point in the history
* Campos não documentados na API da IUGU
Ref #35
  • Loading branch information
rscouto committed Apr 7, 2016
1 parent a60ec7f commit ec17117
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion iugu.net/Entity/InvoiceModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

namespace iugu.net.Entity
{
// TODO: Precisa de refatoração, nomes fora do padrão .Net, sem documentação também
// TODO: Precisa de refatoração, nomes fora do padrão .Net, sem documentação também,
// faltando propriededas que não estão na documentação
public class InvoiceModel
{
public string id { get; set; }
Expand All @@ -17,7 +18,11 @@ public class InvoiceModel
public object tax_cents { get; set; }
public string updated_at { get; set; }
public int total_cents { get; set; }
public string total_paid { get; set; }
public int total_paid_cents { get; set; }
public object paid_at { get; set; }
public int? paid_cents { get; set; }
public string paid { get; set; }
public string secure_id { get; set; }
public string secure_url { get; set; }
public object customer_id { get; set; }
Expand Down

0 comments on commit ec17117

Please sign in to comment.