Show / Hide Table of Contents

Class ChatAttachment

The type ChatAttachment.

Inheritance
System.Object
ChatAttachment
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
[JsonConverter(typeof(DerivedTypeConverter))]
public class ChatAttachment

Properties

View Source

AdditionalData

Gets or sets additional data.

Declaration
[JsonExtensionData(ReadData = true)]
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>
View Source

Content

Gets or sets content.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "content", Required = Required.Default)]
public string Content { get; set; }
Property Value
Type Description
System.String
View Source

ContentType

Gets or sets contentType.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "contentType", Required = Required.Default)]
public string ContentType { get; set; }
Property Value
Type Description
System.String
View Source

Index

Gets or sets index.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "index", Required = Required.Default)]
public long? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>
View Source

Name

Gets or sets name.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "name", Required = Required.Default)]
public string Name { get; set; }
Property Value
Type Description
System.String
View Source

SourceUrl

Gets or sets sourceUrl.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "sourceUrl", Required = Required.Default)]
public string SourceUrl { get; set; }
Property Value
Type Description
System.String
View Source

ThumbnailUrl

Gets or sets thumbnailUrl.

Declaration
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "thumbnailUrl", Required = Required.Default)]
public string ThumbnailUrl { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Generated by DocFX