The value-added services available for purchase with a shipping service offering.

AvailableValueAddedServiceGroup

interface AvailableValueAddedServiceGroup {
    groupDescription: string;
    groupId: string;
    isRequired: boolean;
    valueAddedServices?: ValueAddedService[];
}

Properties

groupDescription: string

The name of the value-added service group.

AvailableValueAddedServiceGroup

groupId: string

The type of the value-added service group.

AvailableValueAddedServiceGroup

isRequired: boolean

When true, one or more of the value-added services listed must be specified.

AvailableValueAddedServiceGroup

valueAddedServices?: ValueAddedService[]

A list of optional value-added services available for purchase with a shipping service offering.

AvailableValueAddedServiceGroup