Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /* tslint:disable */ /* eslint-disable */ /** * Octane API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface PastInvoice */ export interface PastInvoice { /** * * @type {string} * @memberof PastInvoice */ customerName?: string; /** * * @type {number} * @memberof PastInvoice */ amountDue?: number; /** * * @type {Date} * @memberof PastInvoice */ dueDate?: Date; /** * * @type {string} * @memberof PastInvoice */ statusDescription?: string; /** * * @type {string} * @memberof PastInvoice */ exportUrl?: string; /** * External unique 'uuid' identifier for this Invoice. * @type {string} * @memberof PastInvoice */ id?: string; /** * * @type {string} * @memberof PastInvoice */ status?: string; /** * * @type {Date} * @memberof PastInvoice */ issueDate?: Date; } export function PastInvoiceFromJSON(json: any): PastInvoice { return PastInvoiceFromJSONTyped(json, false); } export function PastInvoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): PastInvoice { if ((json === undefined) || (json === null)) { return json; } return { 'customerName': !exists(json, 'customer_name') ? undefined : json['customer_name'], 'amountDue': !exists(json, 'amount_due') ? undefined : json['amount_due'], 'dueDate': !exists(json, 'due_date') ? undefined : (new Date(json['due_date'])), 'statusDescription': !exists(json, 'status_description') ? undefined : json['status_description'], 'exportUrl': !exists(json, 'export_url') ? undefined : json['export_url'], 'id': !exists(json, 'id') ? undefined : json['id'], 'status': !exists(json, 'status') ? undefined : json['status'], 'issueDate': !exists(json, 'issue_date') ? undefined : (new Date(json['issue_date'])), }; } export function PastInvoiceToJSON(value?: PastInvoice | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'customer_name': value.customerName, 'amount_due': value.amountDue, 'due_date': value.dueDate === undefined ? undefined : (value.dueDate.toISOString()), 'status_description': value.statusDescription, 'export_url': value.exportUrl, 'id': value.id, 'status': value.status, 'issue_date': value.issueDate === undefined ? undefined : (value.issueDate.toISOString()), }; } |