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 | 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 UpdateVendorAvalaraSettingsArgs */ export interface UpdateVendorAvalaraSettingsArgs { /** * he tax code to associate with the item that is representing the Octane invoice. * @type {string} * @memberof UpdateVendorAvalaraSettingsArgs */ taxCode?: string; /** * The Avalara company code string to associate the Octane vendor with. * @type {string} * @memberof UpdateVendorAvalaraSettingsArgs */ companyCode?: string; /** * Enable/Disable the Avalara integration. * @type {boolean} * @memberof UpdateVendorAvalaraSettingsArgs */ enableIntegration?: boolean; /** * True if enabling logging for Avalara calls, false otherwise. * @type {boolean} * @memberof UpdateVendorAvalaraSettingsArgs */ enableLogging?: boolean; /** * The Avalara item code to use to represent all the line items on the Octane invoice. * @type {string} * @memberof UpdateVendorAvalaraSettingsArgs */ itemCode?: string; /** * The item description to use to represent all the lines on the Octane invoice. * @type {string} * @memberof UpdateVendorAvalaraSettingsArgs */ itemDescription?: string; /** * True if the documents generated in Avalara should be committed, false otherwise. * @type {boolean} * @memberof UpdateVendorAvalaraSettingsArgs */ commitDocuments?: boolean; } export function UpdateVendorAvalaraSettingsArgsFromJSON(json: any): UpdateVendorAvalaraSettingsArgs { return UpdateVendorAvalaraSettingsArgsFromJSONTyped(json, false); } export function UpdateVendorAvalaraSettingsArgsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateVendorAvalaraSettingsArgs { if ((json === undefined) || (json === null)) { return json; } return { 'taxCode': !exists(json, 'tax_code') ? undefined : json['tax_code'], 'companyCode': !exists(json, 'company_code') ? undefined : json['company_code'], 'enableIntegration': !exists(json, 'enable_integration') ? undefined : json['enable_integration'], 'enableLogging': !exists(json, 'enable_logging') ? undefined : json['enable_logging'], 'itemCode': !exists(json, 'item_code') ? undefined : json['item_code'], 'itemDescription': !exists(json, 'item_description') ? undefined : json['item_description'], 'commitDocuments': !exists(json, 'commit_documents') ? undefined : json['commit_documents'], }; } export function UpdateVendorAvalaraSettingsArgsToJSON(value?: UpdateVendorAvalaraSettingsArgs | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'tax_code': value.taxCode, 'company_code': value.companyCode, 'enable_integration': value.enableIntegration, 'enable_logging': value.enableLogging, 'item_code': value.itemCode, 'item_description': value.itemDescription, 'commit_documents': value.commitDocuments, }; } |