import * as Enums from '../enums/index'; /** * The Response of the /shippingverify endpoint. Describes the result of checking all applicable shipping rules against each line in the transaction. * @export * @class ShippingVerifyResult */ export declare class ShippingVerifyResult { /** * @type {boolean} * @memberof ShippingVerifyResult */ compliant?: boolean | undefined; /** * @type {string} * @memberof ShippingVerifyResult */ message?: string | undefined; /** * @type {string} * @memberof ShippingVerifyResult */ successMessages?: string | undefined; /** * @type {string} * @memberof ShippingVerifyResult */ failureMessages?: string | undefined; /** * @type {Enums.FailureCodes[]} * @memberof ShippingVerifyResult */ failureCodes?: Enums.FailureCodes[] | undefined; /** * @type {string[]} * @memberof ShippingVerifyResult */ warningCodes?: string[] | undefined; /** * @type {object[]} * @memberof ShippingVerifyResult */ lines?: object[] | undefined; }