Represents an ImageMessage.

Hierarchy

  • ImageMessage

Implements

Constructors

Properties

accessibilityLabel?: null | string

ImageMessage accessibilityLabel.

annotations: IInteractiveAnnotation[]

ImageMessage annotations.

caption?: null | string

ImageMessage caption.

contextInfo?: null | IContextInfo

ImageMessage contextInfo.

directPath?: null | string

ImageMessage directPath.

experimentGroupId?: null | number

ImageMessage experimentGroupId.

fileEncSha256?: null | Uint8Array

ImageMessage fileEncSha256.

fileLength?: null | number | Long

ImageMessage fileLength.

fileSha256?: null | Uint8Array

ImageMessage fileSha256.

firstScanLength?: null | number

ImageMessage firstScanLength.

firstScanSidecar?: null | Uint8Array

ImageMessage firstScanSidecar.

height?: null | number

ImageMessage height.

imageSourceType?: null | ImageSourceType

ImageMessage imageSourceType.

interactiveAnnotations: IInteractiveAnnotation[]

ImageMessage interactiveAnnotations.

jpegThumbnail?: null | Uint8Array

ImageMessage jpegThumbnail.

mediaKey?: null | Uint8Array

ImageMessage mediaKey.

mediaKeyTimestamp?: null | number | Long

ImageMessage mediaKeyTimestamp.

midQualityFileEncSha256?: null | Uint8Array

ImageMessage midQualityFileEncSha256.

midQualityFileSha256?: null | Uint8Array

ImageMessage midQualityFileSha256.

mimetype?: null | string

ImageMessage mimetype.

scanLengths: number[]

ImageMessage scanLengths.

scansSidecar?: null | Uint8Array

ImageMessage scansSidecar.

staticUrl?: null | string

ImageMessage staticUrl.

thumbnailDirectPath?: null | string

ImageMessage thumbnailDirectPath.

thumbnailEncSha256?: null | Uint8Array

ImageMessage thumbnailEncSha256.

thumbnailSha256?: null | Uint8Array

ImageMessage thumbnailSha256.

url?: null | string

ImageMessage url.

viewOnce?: null | boolean

ImageMessage viewOnce.

width?: null | number

ImageMessage width.

Methods

  • Converts this ImageMessage to JSON.

    Returns {
        [k: string]: any;
    }

    JSON object

    • [k: string]: any
  • Decodes an ImageMessage message from the specified reader or buffer.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    • Optional length: number

      Message length if known beforehand

    Returns ImageMessage

    ImageMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Decodes an ImageMessage message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    Returns ImageMessage

    ImageMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Encodes the specified ImageMessage message. Does not implicitly verify messages.

    Parameters

    • message: IImageMessage

      ImageMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Encodes the specified ImageMessage message, length delimited. Does not implicitly verify messages.

    Parameters

    • message: IImageMessage

      ImageMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

  • Creates an ImageMessage message from a plain object. Also converts values to their respective internal types.

    Parameters

    • object: {
          [k: string]: any;
      }

      Plain object

      • [k: string]: any

    Returns ImageMessage

    ImageMessage

  • Gets the default type url for ImageMessage

    Parameters

    • Optional typeUrlPrefix: string

      your custom typeUrlPrefix(default "type.googleapis.com")

    Returns string

    The default type url

  • Creates a plain object from an ImageMessage message. Also converts values to other types if specified.

    Parameters

    • message: ImageMessage

      ImageMessage

    • Optional options: IConversionOptions

      Conversion options

    Returns {
        [k: string]: any;
    }

    Plain object

    • [k: string]: any
  • Verifies an ImageMessage message.

    Parameters

    • message: {
          [k: string]: any;
      }

      Plain object to verify

      • [k: string]: any

    Returns null | string

    null if valid, otherwise the reason why it is not

Generated using TypeDoc