Show / Hide Table of Contents

Class ImagePayload

Container of information about an image.

Inheritance
System.Object
ImagePayload
Implements
IMessage<ImagePayload>
System.IEquatable<ImagePayload>
IDeepCloneable<ImagePayload>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class ImagePayload : IMessage<ImagePayload>, IEquatable<ImagePayload>, IDeepCloneable<ImagePayload>, IBufferMessage, IMessage

Constructors

ImagePayload()

Declaration
public ImagePayload()

ImagePayload(ImagePayload)

Declaration
public ImagePayload(ImagePayload other)
Parameters
Type Name Description
ImagePayload other

Properties

ImageThumbnail

A byte string of a thumbnail image.

Declaration
public ByteString ImageThumbnail { get; set; }
Property Value
Type Description
ByteString

ImageUri

Image uri from the user bucket.

Declaration
public string ImageUri { get; set; }
Property Value
Type Description
System.String

MimeType

Image format.

Declaration
public string MimeType { get; set; }
Property Value
Type Description
System.String

SignedUri

Signed uri of the image file in the service bucket.

Declaration
public string SignedUri { get; set; }
Property Value
Type Description
System.String
Back to top