Class RawOutput
Raw output. This data type is not supported in Gemini API.
public record RawOutput : IEquatable<RawOutput>
- Inheritance
-
RawOutput
- Implements
- Inherited Members
Properties
RawOutputField
Output only. Raw output string.
[JsonPropertyName("rawOutput")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public List<string>? RawOutputField { get; set; }
Property Value
Methods
FromJson(string, JsonSerializerOptions?)
Deserializes a JSON string to a RawOutput object.
public static RawOutput? FromJson(string jsonString, JsonSerializerOptions? options = null)
Parameters
jsonStringstringThe JSON string to deserialize.
optionsJsonSerializerOptionsOptional JsonSerializerOptions.
Returns
- RawOutput
The deserialized RawOutput object, or null if deserialization fails.