Class ResourceFileDownloadResult
- java.lang.Object
-
- net.avalara.avatax.rest.client.models.ResourceFileDownloadResult
-
public class ResourceFileDownloadResult extends java.lang.ObjectRepresents everything downloaded from resource files
-
-
Constructor Summary
Constructors Constructor Description ResourceFileDownloadResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBytes()Getter for bytes Bytes of the filejava.lang.StringgetContentType()Getter for contentType Mime content typejava.lang.StringgetFilename()Getter for filename Original filenamejava.lang.BooleangetSuccess()Getter for success True if this download succeededvoidsetBytes(java.lang.String value)Setter for bytes Bytes of the filevoidsetContentType(java.lang.String value)Setter for contentType Mime content typevoidsetFilename(java.lang.String value)Setter for filename Original filenamevoidsetSuccess(java.lang.Boolean value)Setter for success True if this download succeededjava.lang.StringtoString()Returns a JSON string representation of ResourceFileDownloadResult
-
-
-
Method Detail
-
getSuccess
public java.lang.Boolean getSuccess()
Getter for success True if this download succeeded
-
setSuccess
public void setSuccess(java.lang.Boolean value)
Setter for success True if this download succeeded
-
getBytes
public java.lang.String getBytes()
Getter for bytes Bytes of the file
-
setBytes
public void setBytes(java.lang.String value)
Setter for bytes Bytes of the file
-
getFilename
public java.lang.String getFilename()
Getter for filename Original filename
-
setFilename
public void setFilename(java.lang.String value)
Setter for filename Original filename
-
getContentType
public java.lang.String getContentType()
Getter for contentType Mime content type
-
setContentType
public void setContentType(java.lang.String value)
Setter for contentType Mime content type
-
toString
public java.lang.String toString()
Returns a JSON string representation of ResourceFileDownloadResult- Overrides:
toStringin classjava.lang.Object
-
-