Market item acquisition options (install, buy, etc) for an installation target.

interface AcquisitionOptions {
    defaultOperation?: AcquisitionOperation;
    itemId?: string;
    operations?: AcquisitionOperation[];
    properties?: any;
    target?: string;
}

Properties

defaultOperation?: AcquisitionOperation

Default Operation for the ItemId in this target

itemId?: string

The item id that this options refer to

operations?: AcquisitionOperation[]

Operations allowed for the ItemId in this target

properties?: any

Additional properties which can be added to the request.

target?: string

The target that this options refer to