Search Results for

    Show / Hide Table of Contents

    Class AITransformCreateOptions

    AITransformCreateOptions

    Inheritance
    object
    AITransformCreateOptions
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "AITransformCreateOptions")]
    public class AITransformCreateOptions : IValidatableObject

    Constructors

    View Source

    AITransformCreateOptions(string, List<string>, List<string>, StructuredOutputSchema, Guid?, string)

    Initializes a new instance of the AITransformCreateOptions class.

    Declaration
    public AITransformCreateOptions(string name = null, List<string> conditions = null, List<string> instructions = null, StructuredOutputSchema outputSchema = null, Guid? outputSchemaId = null, string extractPrompt = null)
    Parameters
    Type Name Description
    string name

    name.

    List<string> conditions

    conditions.

    List<string> instructions

    instructions.

    StructuredOutputSchema outputSchema

    outputSchema.

    Guid? outputSchemaId

    outputSchemaId.

    string extractPrompt

    extractPrompt.

    Properties

    View Source

    Conditions

    Gets or Sets Conditions

    Declaration
    [DataMember(Name = "conditions", EmitDefaultValue = true)]
    public List<string> Conditions { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    ExtractPrompt

    Gets or Sets ExtractPrompt

    Declaration
    [DataMember(Name = "extractPrompt", EmitDefaultValue = true)]
    public string ExtractPrompt { get; set; }
    Property Value
    Type Description
    string
    View Source

    Instructions

    Gets or Sets Instructions

    Declaration
    [DataMember(Name = "instructions", EmitDefaultValue = true)]
    public List<string> Instructions { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    Name

    Gets or Sets Name

    Declaration
    [DataMember(Name = "name", EmitDefaultValue = true)]
    public string Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    OutputSchema

    Gets or Sets OutputSchema

    Declaration
    [DataMember(Name = "outputSchema", EmitDefaultValue = true)]
    public StructuredOutputSchema OutputSchema { get; set; }
    Property Value
    Type Description
    StructuredOutputSchema
    View Source

    OutputSchemaId

    Gets or Sets OutputSchemaId

    Declaration
    [DataMember(Name = "outputSchemaId", EmitDefaultValue = true)]
    public Guid? OutputSchemaId { get; set; }
    Property Value
    Type Description
    Guid?

    Methods

    View Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.