Search Results for

    Show / Hide Table of Contents

    Class ConnectorSyncResult

    ConnectorSyncResult

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

    Constructors

    View Source

    ConnectorSyncResult()

    Initializes a new instance of the ConnectorSyncResult class.

    Declaration
    [JsonConstructor]
    protected ConnectorSyncResult()
    View Source

    ConnectorSyncResult(int, List<string>, List<Guid>)

    Initializes a new instance of the ConnectorSyncResult class.

    Declaration
    public ConnectorSyncResult(int emailSyncCount = 0, List<string> logs = null, List<Guid> emailIds = null)
    Parameters
    Type Name Description
    int emailSyncCount

    emailSyncCount (required).

    List<string> logs

    logs.

    List<Guid> emailIds

    emailIds.

    Properties

    View Source

    EmailIds

    Gets or Sets EmailIds

    Declaration
    [DataMember(Name = "emailIds", EmitDefaultValue = false)]
    public List<Guid> EmailIds { get; set; }
    Property Value
    Type Description
    List<Guid>
    View Source

    EmailSyncCount

    Gets or Sets EmailSyncCount

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

    Logs

    Gets or Sets Logs

    Declaration
    [DataMember(Name = "logs", EmitDefaultValue = false)]
    public List<string> Logs { get; set; }
    Property Value
    Type Description
    List<string>

    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.