Class PageTableData
PageTableData
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "PageTableData")]
public class PageTableData : IValidatableObject
Constructors
View SourcePageTableData()
Initializes a new instance of the PageTableData class.
Declaration
[JsonConstructor]
protected PageTableData()
PageTableData(List<string>, List<List<string>>, Pagination)
Initializes a new instance of the PageTableData class.
Declaration
public PageTableData(List<string> headers = null, List<List<string>> rows = null, Pagination pagination = null)
Parameters
| Type | Name | Description |
|---|---|---|
| List<string> | headers | headers (required). |
| List<List<string>> | rows | rows (required). |
| Pagination | pagination | pagination (required). |
Properties
View SourceHeaders
Gets or Sets Headers
Declaration
[DataMember(Name = "headers", IsRequired = true, EmitDefaultValue = true)]
public List<string> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
Pagination
Gets or Sets Pagination
Declaration
[DataMember(Name = "pagination", IsRequired = true, EmitDefaultValue = true)]
public Pagination Pagination { get; set; }
Property Value
| Type | Description |
|---|---|
| Pagination |
Rows
Gets or Sets Rows
Declaration
[DataMember(Name = "rows", IsRequired = true, EmitDefaultValue = true)]
public List<List<string>> Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| List<List<string>> |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |