UNPKG

@charlesaugust44/nubank-api

Version:

This is a package to easily integrate the nubank web api, supporting QRCode login.

16 lines (15 loc) 350 B
import Summary from "./Summary"; import Href from "./Href"; import BillItem from "./BillItem"; export default interface Bill { id: string; state: string; summary: Summary; _links: { boleto_email: Href; barcode: Href; invoice_email: Href; self: Href; }; line_items: [BillItem]; }