Search Results for

    Show / Hide Table of Contents

    Class AITransformMappingDto

    AITransformMappingDto

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

    Constructors

    View Source

    AITransformMappingDto()

    Initializes a new instance of the AITransformMappingDto class.

    Declaration
    [JsonConstructor]
    protected AITransformMappingDto()
    View Source

    AITransformMappingDto(Guid, Guid, Guid, string, Guid, EntityTypeEnum)

    Initializes a new instance of the AITransformMappingDto class.

    Declaration
    public AITransformMappingDto(Guid id = default, Guid aiTransformId = default, Guid userId = default, string name = null, Guid entityId = default, AITransformMappingDto.EntityTypeEnum entityType = (AITransformMappingDto.EntityTypeEnum)0)
    Parameters
    Type Name Description
    Guid id

    id (required).

    Guid aiTransformId

    aiTransformId (required).

    Guid userId

    userId (required).

    string name

    name.

    Guid entityId

    entityId (required).

    AITransformMappingDto.EntityTypeEnum entityType

    entityType (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

    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 AITransformMappingDto.EntityTypeEnum EntityType { get; set; }
    Property Value
    Type Description
    AITransformMappingDto.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

    Name

    Gets or Sets Name

    Declaration
    [DataMember(Name = "name", EmitDefaultValue = false)]
    public string Name { get; set; }
    Property Value
    Type Description
    string
    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

    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.