Extra information for printing USPS labels

interface UspsLabelInput {
    ignore_bad_addresses?: boolean;
    processing_category?: UspsProcessingCategory;
    sender_address?: null | FullDomesticAddressInput;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

ignore_bad_addresses?: boolean

Whether to ignore bad addresses when printing the label

false
processing_category?: UspsProcessingCategory

The processing category for the USPS label

sender_address?: null | FullDomesticAddressInput

The address of the entity responsible for sending the package.

Defaults to the ship_from address.