Class FilePart
FilePart represents the different ways files can be provided. If files are small, directly feeding the bytes is
supported via file_with_bytes. If the file is large, the agent should read the content as appropriate directly
from the file_with_uri source.
Assembly: Google.Apis.WorkspaceEvents.v1.dll
Syntax
public class FilePart : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
FileWithBytes
Declaration
[JsonProperty("fileWithBytes")]
public virtual string FileWithBytes { get; set; }
Property Value
FileWithUri
Declaration
[JsonProperty("fileWithUri")]
public virtual string FileWithUri { get; set; }
Property Value
MimeType
Declaration
[JsonProperty("mimeType")]
public virtual string MimeType { get; set; }
Property Value
Name
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Implements