Search Results for

    Show / Hide Table of Contents

    Class ExportOptions

    Options for exporting user data

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

    Constructors

    View Source

    ExportOptions()

    Initializes a new instance of the ExportOptions class.

    Declaration
    [JsonConstructor]
    protected ExportOptions()
    View Source

    ExportOptions(OutputFormatEnum, bool?, DateTime?, DateTime?, string, string)

    Initializes a new instance of the ExportOptions class.

    Declaration
    public ExportOptions(ExportOptions.OutputFormatEnum outputFormat = (ExportOptions.OutputFormatEnum)0, bool? excludePreviouslyExported = null, DateTime? createdEarliestTime = null, DateTime? createdOldestTime = null, string filter = null, string listSeparatorToken = null)
    Parameters
    Type Name Description
    ExportOptions.OutputFormatEnum outputFormat

    outputFormat (required).

    bool? excludePreviouslyExported

    excludePreviouslyExported.

    DateTime? createdEarliestTime

    createdEarliestTime.

    DateTime? createdOldestTime

    createdOldestTime.

    string filter

    filter.

    string listSeparatorToken

    listSeparatorToken.

    Properties

    View Source

    CreatedEarliestTime

    Gets or Sets CreatedEarliestTime

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

    CreatedOldestTime

    Gets or Sets CreatedOldestTime

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

    ExcludePreviouslyExported

    Gets or Sets ExcludePreviouslyExported

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

    Filter

    Gets or Sets Filter

    Declaration
    [DataMember(Name = "filter", EmitDefaultValue = true)]
    public string Filter { get; set; }
    Property Value
    Type Description
    string
    View Source

    ListSeparatorToken

    Gets or Sets ListSeparatorToken

    Declaration
    [DataMember(Name = "listSeparatorToken", EmitDefaultValue = true)]
    public string ListSeparatorToken { get; set; }
    Property Value
    Type Description
    string
    View Source

    OutputFormat

    Gets or Sets OutputFormat

    Declaration
    [DataMember(Name = "outputFormat", IsRequired = true, EmitDefaultValue = true)]
    public ExportOptions.OutputFormatEnum OutputFormat { get; set; }
    Property Value
    Type Description
    ExportOptions.OutputFormatEnum

    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.