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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | 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 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 CreditGrant */ export interface CreditGrant { /** * Number of credits granted * @type {number} * @memberof CreditGrant */ amount?: number; /** * Name of the customer who received the grant * @type {string} * @memberof CreditGrant */ customerName?: string; /** * Total price paid for the credits, in cents * @type {number} * @memberof CreditGrant */ price?: number; /** * A unique identifier for this grant * @type {string} * @memberof CreditGrant */ uuid?: string; /** * Whether the grant has been voided * @type {boolean} * @memberof CreditGrant */ voided?: boolean; /** * Whether the grant has been added to the ledger * @type {boolean} * @memberof CreditGrant */ granted?: boolean; /** * Optional description. This is only viewable internally * @type {string} * @memberof CreditGrant */ description?: string; /** * The source of the grant. * @type {string} * @memberof CreditGrant */ source?: string; /** * The date at which this grant is effective * @type {Date} * @memberof CreditGrant */ effectiveAt?: Date; /** * The date at which this grant expires * @type {Date} * @memberof CreditGrant */ expiresAt?: Date; } export function CreditGrantFromJSON(json: any): CreditGrant { return CreditGrantFromJSONTyped(json, false); } export function CreditGrantFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreditGrant { if ((json === undefined) || (json === null)) { return json; } return { 'amount': !exists(json, 'amount') ? undefined : json['amount'], 'customerName': !exists(json, 'customer_name') ? undefined : json['customer_name'], 'price': !exists(json, 'price') ? undefined : json['price'], 'uuid': !exists(json, 'uuid') ? undefined : json['uuid'], 'voided': !exists(json, 'voided') ? undefined : json['voided'], 'granted': !exists(json, 'granted') ? undefined : json['granted'], 'description': !exists(json, 'description') ? undefined : json['description'], 'source': !exists(json, 'source') ? undefined : json['source'], 'effectiveAt': !exists(json, 'effective_at') ? undefined : (new Date(json['effective_at'])), 'expiresAt': !exists(json, 'expires_at') ? undefined : (new Date(json['expires_at'])), }; } export function CreditGrantToJSON(value?: CreditGrant | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'amount': value.amount, 'customer_name': value.customerName, 'price': value.price, 'uuid': value.uuid, 'voided': value.voided, 'granted': value.granted, 'description': value.description, 'source': value.source, 'effective_at': value.effectiveAt === undefined ? undefined : (value.effectiveAt.toISOString()), 'expires_at': value.expiresAt === undefined ? undefined : (value.expiresAt.toISOString()), }; } |