/** * Lob * The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors.
Looking for our [previous documentation](https://lob.github.io/legacy-docs/)?
*
* The version of the OpenAPI document: 1.3.0
* Contact: lob-openapi@lob.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { OptionalAddressColumnMapping } from "./optional-address-column-mapping";
import { RequiredAddressColumnMapping } from "./required-address-column-mapping";
import { UploadsMetadata } from "./uploads-metadata";
/**
*
* @export
* @class UploadWritable
*/
export declare class UploadWritable {
constructor(input?: any);
/**
*
* @type {string}
* @memberof UploadWritable
*/
"campaignId": string;
/**
*
* @type {RequiredAddressColumnMapping}
* @memberof UploadWritable
*/
"requiredAddressColumnMapping"?: RequiredAddressColumnMapping;
/**
*
* @type {OptionalAddressColumnMapping}
* @memberof UploadWritable
*/
"optionalAddressColumnMapping"?: OptionalAddressColumnMapping;
/**
*
* @type {UploadsMetadata}
* @memberof UploadWritable
*/
"metadata"?: UploadsMetadata;
/**
* The mapping of column headers in your file to the merge variables present in your creative. See our Campaign Audience Guide for additional details.
If a merge variable has the same \"name\" as a \"key\" in the `requiredAddressColumnMapping` or `optionalAddressColumnMapping` objects, then they **CANNOT** have a different value in this object. If a different value is provided, then when the campaign is processing it will get overwritten with the mapped value present in the `requiredAddressColumnMapping` or `optionalAddressColumnMapping` objects.
* @type {object}
* @memberof UploadWritable
*/
"mergeVariableColumnMapping"?: object | null;
toJSON(): {};
}
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/