Search Results for

    Show / Hide Table of Contents

    Class PageableObject

    PageableObject

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

    Constructors

    View Source

    PageableObject(int, bool, int, bool, long, SortObject)

    Initializes a new instance of the PageableObject class.

    Declaration
    public PageableObject(int pageSize = 0, bool paged = false, int pageNumber = 0, bool unpaged = false, long offset = 0, SortObject sort = null)
    Parameters
    Type Name Description
    int pageSize

    pageSize.

    bool paged

    paged.

    int pageNumber

    pageNumber.

    bool unpaged

    unpaged.

    long offset

    offset.

    SortObject sort

    sort.

    Properties

    View Source

    Offset

    Gets or Sets Offset

    Declaration
    [DataMember(Name = "offset", EmitDefaultValue = false)]
    public long Offset { get; set; }
    Property Value
    Type Description
    long
    View Source

    PageNumber

    Gets or Sets PageNumber

    Declaration
    [DataMember(Name = "pageNumber", EmitDefaultValue = false)]
    public int PageNumber { get; set; }
    Property Value
    Type Description
    int
    View Source

    PageSize

    Gets or Sets PageSize

    Declaration
    [DataMember(Name = "pageSize", EmitDefaultValue = false)]
    public int PageSize { get; set; }
    Property Value
    Type Description
    int
    View Source

    Paged

    Gets or Sets Paged

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

    Sort

    Gets or Sets Sort

    Declaration
    [DataMember(Name = "sort", EmitDefaultValue = false)]
    public SortObject Sort { get; set; }
    Property Value
    Type Description
    SortObject
    View Source

    Unpaged

    Gets or Sets Unpaged

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

    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.