/** @description The display scheme that the label will be returned in */
export enum DisplayScheme {
  /** @description Indicates that a shipping label will be returned, default option */
  Label = 'label',
  /** @description Indicates that a paperless label will be returned if available. For example: a qr code image. */
  PaperlessLabel = 'paperless_label',
}
