Expand Minimize Picture-in-picture Power Device Status Voice Recognition Skip Back Skip Forward Minus Plus Play Search
Internet Explorer alert
This browser is not recommended for use with smartdevicelink.com, and may not function properly. Upgrade to a different browser to guarantee support of all features.
close alert
To Top Created with Sketch. To Top
To Bottom Created with Sketch. To Bottom
JavaScript Suite Documentation

GetFile Class Reference

Constructors

Instance Methods

Constructors

new GetFile(parameters)

Initializes an instance of GetFile.

Instance Methods

getFile.getAppServiceId() ⇒ String

Get the AppServiceId

Kind: Instance method of GetFile
Returns: String - the KEY_APP_SERVICE_ID value

getFile.getFileName() ⇒ String

Get the FileName

Kind: Instance method of GetFile
Returns: String - the KEY_FILE_NAME value

getFile.getFileType() ⇒ FileType

Get the FileType

Kind: Instance method of GetFile
Returns: FileType - the KEY_FILE_TYPE value

getFile.getLength() ⇒ Number

Get the Length

Kind: Instance method of GetFile
Returns: Number - the KEY_LENGTH value

getFile.getOffset() ⇒ Number

Get the Offset

Kind: Instance method of GetFile
Returns: Number - the KEY_OFFSET value

getFile.setAppServiceId(id) ⇒ GetFile

Set the AppServiceId

Kind: Instance method of GetFile
Returns: GetFile - The class instance for method chaining.

ParamTypeDescription
id String ID of the service that should have uploaded the requested file. - The desired AppServiceId. {'string_min_length': 1}

getFile.setFileName(name) ⇒ GetFile

Set the FileName

Kind: Instance method of GetFile
Returns: GetFile - The class instance for method chaining.

ParamTypeDescription
name String File name that should be retrieved - The desired FileName. {'string_min_length': 1, 'string_max_length': 255}

getFile.setFileType(type) ⇒ GetFile

Set the FileType

Kind: Instance method of GetFile
Returns: GetFile - The class instance for method chaining.

ParamTypeDescription
type FileType Selected file type. - The desired FileType.

getFile.setLength(length) ⇒ GetFile

Set the Length

Kind: Instance method of GetFile
Returns: GetFile - The class instance for method chaining.

ParamTypeDescription
length Number Optional length in bytes for resuming partial data chunks If offset is set to 0, then length is the total length of the file to be retrieved - The desired Length. {'num_min_value': 0, 'num_max_value': 2000000000}

getFile.setOffset(offset) ⇒ GetFile

Set the Offset

Kind: Instance method of GetFile
Returns: GetFile - The class instance for method chaining.

ParamTypeDescription
offset Number Optional offset in bytes for resuming partial data chunks - The desired Offset. {'num_min_value': 0, 'num_max_value': 2000000000}
View on GitHub.com