Search Results for

    Show / Hide Table of Contents

    Class CreateConnectorSyncSettingsOptions

    Options for creating automatic syncing between an inbox connection and an external mail provider

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

    Constructors

    View Source

    CreateConnectorSyncSettingsOptions(bool?, SyncScheduleTypeEnum?, int?)

    Initializes a new instance of the CreateConnectorSyncSettingsOptions class.

    Declaration
    public CreateConnectorSyncSettingsOptions(bool? syncEnabled = null, CreateConnectorSyncSettingsOptions.SyncScheduleTypeEnum? syncScheduleType = null, int? syncInterval = null)
    Parameters
    Type Name Description
    bool? syncEnabled

    Enable automatic background sync.

    CreateConnectorSyncSettingsOptions.SyncScheduleTypeEnum? syncScheduleType

    Sync schedule type.

    int? syncInterval

    Sync interval in minutes.

    Properties

    View Source

    SyncEnabled

    Enable automatic background sync

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

    Enable automatic background sync

    View Source

    SyncInterval

    Sync interval in minutes

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

    Sync interval in minutes

    View Source

    SyncScheduleType

    Sync schedule type

    Declaration
    [DataMember(Name = "syncScheduleType", EmitDefaultValue = true)]
    public CreateConnectorSyncSettingsOptions.SyncScheduleTypeEnum? SyncScheduleType { get; set; }
    Property Value
    Type Description
    CreateConnectorSyncSettingsOptions.SyncScheduleTypeEnum?

    Sync schedule type

    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.