Represents a VideoMessage.

Hierarchy

  • VideoMessage

Implements

Constructors

Properties

accessibilityLabel?: null | string

VideoMessage accessibilityLabel.

annotations: IInteractiveAnnotation[]

VideoMessage annotations.

caption?: null | string

VideoMessage caption.

contextInfo?: null | IContextInfo

VideoMessage contextInfo.

directPath?: null | string

VideoMessage directPath.

externalShareFullVideoDurationInSeconds?: null | number

VideoMessage externalShareFullVideoDurationInSeconds.

fileEncSha256?: null | Uint8Array

VideoMessage fileEncSha256.

fileLength?: null | number | Long

VideoMessage fileLength.

fileSha256?: null | Uint8Array

VideoMessage fileSha256.

gifAttribution?: null | Attribution

VideoMessage gifAttribution.

gifPlayback?: null | boolean

VideoMessage gifPlayback.

height?: null | number

VideoMessage height.

interactiveAnnotations: IInteractiveAnnotation[]

VideoMessage interactiveAnnotations.

jpegThumbnail?: null | Uint8Array

VideoMessage jpegThumbnail.

mediaKey?: null | Uint8Array

VideoMessage mediaKey.

mediaKeyTimestamp?: null | number | Long

VideoMessage mediaKeyTimestamp.

mimetype?: null | string

VideoMessage mimetype.

processedVideos: IProcessedVideo[]

VideoMessage processedVideos.

seconds?: null | number

VideoMessage seconds.

staticUrl?: null | string

VideoMessage staticUrl.

streamingSidecar?: null | Uint8Array

VideoMessage streamingSidecar.

thumbnailDirectPath?: null | string

VideoMessage thumbnailDirectPath.

thumbnailEncSha256?: null | Uint8Array

VideoMessage thumbnailEncSha256.

thumbnailSha256?: null | Uint8Array

VideoMessage thumbnailSha256.

url?: null | string

VideoMessage url.

viewOnce?: null | boolean

VideoMessage viewOnce.

width?: null | number

VideoMessage width.

Methods

  • Converts this VideoMessage to JSON.

    Returns {
        [k: string]: any;
    }

    JSON object

    • [k: string]: any
  • Decodes a VideoMessage 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 VideoMessage

    VideoMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

  • Decodes a VideoMessage message from the specified reader or buffer, length delimited.

    Parameters

    • reader: Uint8Array | Reader

      Reader or buffer to decode from

    Returns VideoMessage

    VideoMessage

    Throws

    If the payload is not a reader or valid buffer

    Throws

    If required fields are missing

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

    Parameters

    • message: IVideoMessage

      VideoMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

    • message: IVideoMessage

      VideoMessage message or plain object to encode

    • Optional writer: Writer

      Writer to encode to

    Returns Writer

    Writer

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

    Parameters

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

      Plain object

      • [k: string]: any

    Returns VideoMessage

    VideoMessage

  • Gets the default type url for VideoMessage

    Parameters

    • Optional typeUrlPrefix: string

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

    Returns string

    The default type url

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

    Parameters

    • message: VideoMessage

      VideoMessage

    • Optional options: IConversionOptions

      Conversion options

    Returns {
        [k: string]: any;
    }

    Plain object

    • [k: string]: any
  • Verifies a VideoMessage 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