Search Results for

    Show / Hide Table of Contents

    Class ConnectorSyncSettingsDto

    ConnectorSyncSettingsDto

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

    Constructors

    View Source

    ConnectorSyncSettingsDto()

    Initializes a new instance of the ConnectorSyncSettingsDto class.

    Declaration
    [JsonConstructor]
    protected ConnectorSyncSettingsDto()
    View Source

    ConnectorSyncSettingsDto(Guid, Guid, Guid, bool, SyncScheduleTypeEnum?, int?)

    Initializes a new instance of the ConnectorSyncSettingsDto class.

    Declaration
    public ConnectorSyncSettingsDto(Guid id = default, Guid userId = default, Guid connectorId = default, bool syncEnabled = false, ConnectorSyncSettingsDto.SyncScheduleTypeEnum? syncScheduleType = null, int? syncInterval = null)
    Parameters
    Type Name Description
    Guid id

    id (required).

    Guid userId

    userId (required).

    Guid connectorId

    connectorId (required).

    bool syncEnabled

    syncEnabled (required).

    ConnectorSyncSettingsDto.SyncScheduleTypeEnum? syncScheduleType

    syncScheduleType.

    int? syncInterval

    syncInterval.

    Properties

    View Source

    ConnectorId

    Gets or Sets ConnectorId

    Declaration
    [DataMember(Name = "connectorId", IsRequired = true, EmitDefaultValue = true)]
    public Guid ConnectorId { get; set; }
    Property Value
    Type Description
    Guid
    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

    SyncEnabled

    Gets or Sets SyncEnabled

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

    SyncInterval

    Gets or Sets SyncInterval

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

    SyncScheduleType

    Gets or Sets SyncScheduleType

    Declaration
    [DataMember(Name = "syncScheduleType", EmitDefaultValue = true)]
    public ConnectorSyncSettingsDto.SyncScheduleTypeEnum? SyncScheduleType { get; set; }
    Property Value
    Type Description
    ConnectorSyncSettingsDto.SyncScheduleTypeEnum?
    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.