Class AITransformProjection
AITransformProjection
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "AITransformProjection")]
public class AITransformProjection : IValidatableObject
Constructors
View SourceAITransformProjection()
Initializes a new instance of the AITransformProjection class.
Declaration
[JsonConstructor]
protected AITransformProjection()
AITransformProjection(List<string>, List<string>, StructuredOutputSchema, string, Guid)
Initializes a new instance of the AITransformProjection class.
Declaration
public AITransformProjection(List<string> conditions = null, List<string> instructions = null, StructuredOutputSchema outputSchema = null, string name = null, Guid id = default)
Parameters
Type | Name | Description |
---|---|---|
List<string> | conditions | conditions. |
List<string> | instructions | instructions. |
StructuredOutputSchema | outputSchema | outputSchema. |
string | name | name. |
Guid | id | id (required). |
Properties
View SourceConditions
Gets or Sets Conditions
Declaration
[DataMember(Name = "conditions", EmitDefaultValue = false)]
public List<string> Conditions { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Instructions
Gets or Sets Instructions
Declaration
[DataMember(Name = "instructions", EmitDefaultValue = false)]
public List<string> Instructions { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", EmitDefaultValue = false)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
OutputSchema
Gets or Sets OutputSchema
Declaration
[DataMember(Name = "outputSchema", EmitDefaultValue = false)]
public StructuredOutputSchema OutputSchema { get; set; }
Property Value
Type | Description |
---|---|
StructuredOutputSchema |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |