Class PrintOption
- java.lang.Object
-
- software.amazon.spapi.models.shipping.v2.PrintOption
-
public class PrintOption extends java.lang.Object
The format options available for a label.
-
-
Constructor Summary
Constructors Constructor Description PrintOption()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrintOption
addSupportedDocumentDetailsItem(SupportedDocumentDetail supportedDocumentDetailsItem)
PrintOption
addSupportedDPIsItem(java.lang.Integer supportedDPIsItem)
PrintOption
addSupportedFileJoiningOptionsItem(java.lang.Boolean supportedFileJoiningOptionsItem)
PrintOption
addSupportedPageLayoutsItem(java.lang.String supportedPageLayoutsItem)
boolean
equals(java.lang.Object o)
java.util.List<SupportedDocumentDetail>
getSupportedDocumentDetails()
A list of the supported documented details.java.util.List<java.lang.Integer>
getSupportedDPIs()
A list of the supported DPI options for a document.java.util.List<java.lang.Boolean>
getSupportedFileJoiningOptions()
A list of the supported needFileJoining boolean values for a document.java.util.List<java.lang.String>
getSupportedPageLayouts()
A list of the supported page layout options for a document.int
hashCode()
void
setSupportedDocumentDetails(java.util.List<SupportedDocumentDetail> supportedDocumentDetails)
void
setSupportedDPIs(java.util.List<java.lang.Integer> supportedDPIs)
void
setSupportedFileJoiningOptions(java.util.List<java.lang.Boolean> supportedFileJoiningOptions)
void
setSupportedPageLayouts(java.util.List<java.lang.String> supportedPageLayouts)
PrintOption
supportedDocumentDetails(java.util.List<SupportedDocumentDetail> supportedDocumentDetails)
PrintOption
supportedDPIs(java.util.List<java.lang.Integer> supportedDPIs)
PrintOption
supportedFileJoiningOptions(java.util.List<java.lang.Boolean> supportedFileJoiningOptions)
PrintOption
supportedPageLayouts(java.util.List<java.lang.String> supportedPageLayouts)
java.lang.String
toString()
-
-
-
Method Detail
-
supportedDPIs
public PrintOption supportedDPIs(java.util.List<java.lang.Integer> supportedDPIs)
-
addSupportedDPIsItem
public PrintOption addSupportedDPIsItem(java.lang.Integer supportedDPIsItem)
-
getSupportedDPIs
public java.util.List<java.lang.Integer> getSupportedDPIs()
A list of the supported DPI options for a document.- Returns:
- supportedDPIs
-
setSupportedDPIs
public void setSupportedDPIs(java.util.List<java.lang.Integer> supportedDPIs)
-
supportedPageLayouts
public PrintOption supportedPageLayouts(java.util.List<java.lang.String> supportedPageLayouts)
-
addSupportedPageLayoutsItem
public PrintOption addSupportedPageLayoutsItem(java.lang.String supportedPageLayoutsItem)
-
getSupportedPageLayouts
public java.util.List<java.lang.String> getSupportedPageLayouts()
A list of the supported page layout options for a document.- Returns:
- supportedPageLayouts
-
setSupportedPageLayouts
public void setSupportedPageLayouts(java.util.List<java.lang.String> supportedPageLayouts)
-
supportedFileJoiningOptions
public PrintOption supportedFileJoiningOptions(java.util.List<java.lang.Boolean> supportedFileJoiningOptions)
-
addSupportedFileJoiningOptionsItem
public PrintOption addSupportedFileJoiningOptionsItem(java.lang.Boolean supportedFileJoiningOptionsItem)
-
getSupportedFileJoiningOptions
public java.util.List<java.lang.Boolean> getSupportedFileJoiningOptions()
A list of the supported needFileJoining boolean values for a document.- Returns:
- supportedFileJoiningOptions
-
setSupportedFileJoiningOptions
public void setSupportedFileJoiningOptions(java.util.List<java.lang.Boolean> supportedFileJoiningOptions)
-
supportedDocumentDetails
public PrintOption supportedDocumentDetails(java.util.List<SupportedDocumentDetail> supportedDocumentDetails)
-
addSupportedDocumentDetailsItem
public PrintOption addSupportedDocumentDetailsItem(SupportedDocumentDetail supportedDocumentDetailsItem)
-
getSupportedDocumentDetails
public java.util.List<SupportedDocumentDetail> getSupportedDocumentDetails()
A list of the supported documented details.- Returns:
- supportedDocumentDetails
-
setSupportedDocumentDetails
public void setSupportedDocumentDetails(java.util.List<SupportedDocumentDetail> supportedDocumentDetails)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-