Class ListCachedContentsResponse
public record ListCachedContentsResponse : IEquatable<ListCachedContentsResponse>
- Inheritance
-
ListCachedContentsResponse
- Implements
- Inherited Members
Properties
CachedContents
List of cached contents.
[JsonPropertyName("cachedContents")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public List<CachedContent>? CachedContents { get; set; }
Property Value
NextPageToken
[JsonPropertyName("nextPageToken")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string? NextPageToken { get; set; }
Property Value
SdkHttpResponse
Used to retain the full HTTP response.
[JsonPropertyName("sdkHttpResponse")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public HttpResponse? SdkHttpResponse { get; set; }
Property Value
Methods
FromJson(string, JsonSerializerOptions?)
Deserializes a JSON string to a ListCachedContentsResponse object.
public static ListCachedContentsResponse? FromJson(string jsonString, JsonSerializerOptions? options = null)
Parameters
jsonStringstringThe JSON string to deserialize.
optionsJsonSerializerOptionsOptional JsonSerializerOptions.
Returns
- ListCachedContentsResponse
The deserialized ListCachedContentsResponse object, or null if deserialization fails.