Class PageBouncedEmail
Paginated bounced email. Page index starts at zero. Projection results may omit larger entity fields. For fetching a full entity use the projection ID with individual method calls.
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "PageBouncedEmail")]
public class PageBouncedEmail : IEquatable<PageBouncedEmail>, IValidatableObject
Constructors
View SourcePageBouncedEmail()
Initializes a new instance of the PageBouncedEmail class.
Declaration
[JsonConstructor]
protected PageBouncedEmail()
PageBouncedEmail(List<BounceProjection>, PageableObject, int, long, bool, int, bool, int, int, SortObject, bool)
Initializes a new instance of the PageBouncedEmail class.
Declaration
public PageBouncedEmail(List<BounceProjection> content = null, PageableObject pageable = null, int totalPages = 0, long totalElements = 0, bool last = false, int numberOfElements = 0, bool first = false, int size = 0, int number = 0, SortObject sort = null, bool empty = false)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<T><BounceProjection> | content | content. |
PageableObject | pageable | pageable. |
int | totalPages | totalPages (required). |
long | totalElements | totalElements (required). |
bool | last | last. |
int | numberOfElements | numberOfElements. |
bool | first | first. |
int | size | size. |
int | number | number. |
SortObject | sort | sort. |
bool | empty | empty. |
Properties
View SourceContent
Gets or Sets Content
Declaration
[DataMember(Name = "content", EmitDefaultValue = false)]
public List<BounceProjection> Content { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T><BounceProjection> |
Empty
Gets or Sets Empty
Declaration
[DataMember(Name = "empty", EmitDefaultValue = true)]
public bool Empty { get; set; }
Property Value
Type | Description |
---|---|
bool |
First
Gets or Sets First
Declaration
[DataMember(Name = "first", EmitDefaultValue = true)]
public bool First { get; set; }
Property Value
Type | Description |
---|---|
bool |
Last
Gets or Sets Last
Declaration
[DataMember(Name = "last", EmitDefaultValue = true)]
public bool Last { get; set; }
Property Value
Type | Description |
---|---|
bool |
Number
Gets or Sets Number
Declaration
[DataMember(Name = "number", EmitDefaultValue = false)]
public int Number { get; set; }
Property Value
Type | Description |
---|---|
int |
NumberOfElements
Gets or Sets NumberOfElements
Declaration
[DataMember(Name = "numberOfElements", EmitDefaultValue = false)]
public int NumberOfElements { get; set; }
Property Value
Type | Description |
---|---|
int |
Pageable
Gets or Sets Pageable
Declaration
[DataMember(Name = "pageable", EmitDefaultValue = false)]
public PageableObject Pageable { get; set; }
Property Value
Type | Description |
---|---|
PageableObject |
Size
Gets or Sets Size
Declaration
[DataMember(Name = "size", EmitDefaultValue = false)]
public int Size { get; set; }
Property Value
Type | Description |
---|---|
int |
Sort
Gets or Sets Sort
Declaration
[DataMember(Name = "sort", EmitDefaultValue = false)]
public SortObject Sort { get; set; }
Property Value
Type | Description |
---|---|
SortObject |
TotalElements
Gets or Sets TotalElements
Declaration
[DataMember(Name = "totalElements", IsRequired = true, EmitDefaultValue = true)]
public long TotalElements { get; set; }
Property Value
Type | Description |
---|---|
long |
TotalPages
Gets or Sets TotalPages
Declaration
[DataMember(Name = "totalPages", IsRequired = true, EmitDefaultValue = true)]
public int TotalPages { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
View SourceEquals(PageBouncedEmail)
Returns true if PageBouncedEmail instances are equal
Declaration
public bool Equals(PageBouncedEmail input)
Parameters
Type | Name | Description |
---|---|---|
PageBouncedEmail | input | Instance of PageBouncedEmail to be compared |
Returns
Type | Description |
---|---|
bool | Boolean |
Equals(object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
object | input | Object to be compared |
Returns
Type | Description |
---|---|
bool | Boolean |
Overrides
View SourceGetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | Hash code |
Overrides
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 |
Overrides
Validate(ValidationContext)
To validate all properties of the instance
Declaration
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
Parameters
Type | Name | Description |
---|---|---|
ValidationContext | validationContext | Validation context |
Returns
Type | Description |
---|---|
IEnumerable<ValidationResult> | Validation Result |