All files / codegen/models CreateVendorAvalaraSettingsArgs.ts

69.29% Statements 88/127
100% Branches 0/0
0% Functions 0/3
69.29% Lines 88/127

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 1291x 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 CreateVendorAvalaraSettingsArgs
 */
export interface CreateVendorAvalaraSettingsArgs {
    /**
     * The tax code to associate with the item that is representing the Octane invoice.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    taxCode?: string;
    /**
     * The Avalara company code string to associate the Octane vendor with.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    companyCode?: string;
    /**
     * Enable/Disable the Avalara integration.
     * @type {boolean}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    enableIntegration: boolean;
    /**
     * Password of the Avalara account.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    password: string;
    /**
     * True if enabling logging for Avalara calls, false otherwise. Defaults to False.
     * @type {boolean}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    enableLogging?: boolean;
    /**
     * True if connecting to Avalara sandbox account, false otherwise.
     * @type {boolean}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    sandboxMode: boolean;
    /**
     * Username of the Avalara account.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    username: string;
    /**
     * The Avalara item code to use to represent all the line items on the Octane invoice.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    itemCode?: string;
    /**
     * The item description to use to represent all the lines on the Octane invoice.
     * @type {string}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    itemDescription?: string;
    /**
     * True if the documents generated in Avalara should be committed, false otherwise. Defaults to False.
     * @type {boolean}
     * @memberof CreateVendorAvalaraSettingsArgs
     */
    commitDocuments?: boolean;
}
 
export function CreateVendorAvalaraSettingsArgsFromJSON(json: any): CreateVendorAvalaraSettingsArgs {
    return CreateVendorAvalaraSettingsArgsFromJSONTyped(json, false);
}
 
export function CreateVendorAvalaraSettingsArgsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateVendorAvalaraSettingsArgs {
    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': json['enable_integration'],
        'password': json['password'],
        'enableLogging': !exists(json, 'enable_logging') ? undefined : json['enable_logging'],
        'sandboxMode': json['sandbox_mode'],
        'username': json['username'],
        '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 CreateVendorAvalaraSettingsArgsToJSON(value?: CreateVendorAvalaraSettingsArgs | 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,
        'password': value.password,
        'enable_logging': value.enableLogging,
        'sandbox_mode': value.sandboxMode,
        'username': value.username,
        'item_code': value.itemCode,
        'item_description': value.itemDescription,
        'commit_documents': value.commitDocuments,
    };
}