Skip to main content Link Search Menu Expand Document (external link) Copy Copied

FileUpload

view source

Table of contents
  1. FileUpload
    1. Properties
    2. Methods
      1. public getFilename()
      2. public setFilename(string $filename)
      3. public getName()
      4. public setName(string $name)
      5. public getContent()
      6. public setContent(string $content)
      7. public getCallbackUrl()
      8. public setCallbackUrl(string $callbackUrl)
      9. public getDigest()
      10. public setDigest(string $digest)

Properties

Visibility Type Name Description
protected String filename Name of the file, will be set to ‘filename’ in request body
protected String name Name of the file, will be set to ‘name’ in request body
protected String content Generally base64 encoded content of file
protected String digest Digest of the file
protected String callbackUrl Callback URL, will be set to ‘callbackUrl’ in request body

Methods

public getFilename()

returns self

public setFilename(string $filename)

returns self

public getName()

returns self

public setName(string $name)

returns self

public getContent()

returns self

public setContent(string $content)

returns self

public getCallbackUrl()

returns self

public setCallbackUrl(string $callbackUrl)

returns self

public getDigest()

returns self

public setDigest(string $digest)

returns self