Search Results for

    Show / Hide Table of Contents

    Class AITransformResultDto

    AITransformResultDto

    Inheritance
    object
    AITransformResultDto
    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 = "AITransformResultDto")]
    public class AITransformResultDto : IValidatableObject

    Constructors

    View Source

    AITransformResultDto()

    Initializes a new instance of the AITransformResultDto class.

    Declaration
    [JsonConstructor]
    protected AITransformResultDto()
    View Source

    AITransformResultDto(Guid, Guid, Guid, Guid, object, Guid, EntityTypeEnum, DateTime, DateTime)

    Initializes a new instance of the AITransformResultDto class.

    Declaration
    public AITransformResultDto(Guid id = default, Guid userId = default, Guid aiTransformId = default, Guid aiTransformMappingId = default, object value = null, Guid entityId = default, AITransformResultDto.EntityTypeEnum entityType = (AITransformResultDto.EntityTypeEnum)0, DateTime createdAt = default, DateTime updatedAt = default)
    Parameters
    Type Name Description
    Guid id

    id (required).

    Guid userId

    userId (required).

    Guid aiTransformId

    aiTransformId (required).

    Guid aiTransformMappingId

    aiTransformMappingId (required).

    object value

    value (required).

    Guid entityId

    entityId (required).

    AITransformResultDto.EntityTypeEnum entityType

    entityType (required).

    DateTime createdAt

    createdAt (required).

    DateTime updatedAt

    updatedAt (required).

    Properties

    View Source

    AiTransformId

    Gets or Sets AiTransformId

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

    AiTransformMappingId

    Gets or Sets AiTransformMappingId

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

    CreatedAt

    Gets or Sets CreatedAt

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

    EntityId

    Gets or Sets EntityId

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

    EntityType

    Gets or Sets EntityType

    Declaration
    [DataMember(Name = "entityType", IsRequired = true, EmitDefaultValue = true)]
    public AITransformResultDto.EntityTypeEnum EntityType { get; set; }
    Property Value
    Type Description
    AITransformResultDto.EntityTypeEnum
    View Source

    Id

    Gets or Sets Id

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

    UpdatedAt

    Gets or Sets UpdatedAt

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

    UserId

    Gets or Sets UserId

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

    Value

    Gets or Sets Value

    Declaration
    [DataMember(Name = "value", IsRequired = true, EmitDefaultValue = true)]
    public object Value { get; set; }
    Property Value
    Type Description
    object

    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.