ODataV4SingleEntityResponseBase

Represents the base class for OData v4.0 single entity responses containing entity-specific metadata. Provides properties for entity type information, identification, and edit links.

Syntax

public class ODataV4SingleEntityResponseBase : ODataV4ResponseBase

Inheritance

Properties

[JsonPropertyName("@odata.editLink")]
public string ODataEditLink { get; set; }
Gets or sets the URL that can be used to edit the entity. This property provides the endpoint for performing update operations on the entity.

Returns

string

ODataId

[JsonPropertyName("@odata.id")]
public string ODataId { get; set; }
Gets or sets the canonical URL that identifies the entity. This property provides a unique identifier for the entity resource.

Returns

string

ODataIdType

[JsonPropertyName("Id@odata.type")]
public string ODataIdType { get; set; }
Gets or sets the type annotation for the entity’s Id property. This property specifies the data type of the entity identifier.

Returns

string

ODataType

[JsonPropertyName("@odata.type")]
public string ODataType { get; set; }
Gets or sets the type annotation specifying the entity type. This property provides runtime type information for the entity.

Returns

string