Class Part
Part represents a container for a section of communication content. Parts can be purely textual, some sort of
file (image, video, etc) or a structured data blob (i.e. JSON).
Assembly: Google.Apis.WorkspaceEvents.v1.dll
Syntax
public class Part : IDirectResponseSchema
Properties
Data
Declaration
[JsonProperty("data")]
public virtual DataPart Data { get; set; }
Property Value
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
File
Declaration
[JsonProperty("file")]
public virtual FilePart File { get; set; }
Property Value
Optional metadata associated with this part.
Declaration
[JsonProperty("metadata")]
public virtual IDictionary<string, object> Metadata { get; set; }
Property Value
Text
Declaration
[JsonProperty("text")]
public virtual string Text { get; set; }
Property Value
Implements