Interface IIdentifiable
- Namespace
- JsonApiDotNetCore.Resources
- Assembly
- JsonApiDotNetCore.Annotations.dll
Defines the basic contract for a JSON:API resource. All resource classes must implement IIdentifiable<TId>.
[PublicAPI]
public interface IIdentifiable
Properties
LocalId
The value for element 'lid' in a JSON:API request.
string? LocalId { get; set; }
Property Value
StringId
The value for element 'id' in a JSON:API request or response.
string? StringId { get; set; }