Class TopLevelLinks
- Namespace
- JsonApiDotNetCore.Serialization.Objects
- Assembly
- JsonApiDotNetCore.dll
See "links" in https://jsonapi.org/format/#document-top-level.
[PublicAPI]
public sealed class TopLevelLinks
- Inheritance
-
TopLevelLinks
- Inherited Members
Properties
DescribedBy
[JsonPropertyName("describedby")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? DescribedBy { get; set; }
Property Value
First
[JsonPropertyName("first")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? First { get; set; }
Property Value
Last
[JsonPropertyName("last")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Last { get; set; }
Property Value
Next
[JsonPropertyName("next")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Next { get; set; }
Property Value
Prev
[JsonPropertyName("prev")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Prev { get; set; }
Property Value
Related
[JsonPropertyName("related")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Related { get; set; }
Property Value
Self
[JsonPropertyName("self")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? Self { get; set; }