Class AuditLogPageDto
AuditLogPageDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "AuditLogPageDto")]
public class AuditLogPageDto : IValidatableObject
Constructors
View SourceAuditLogPageDto()
Initializes a new instance of the AuditLogPageDto class.
Declaration
[JsonConstructor]
protected AuditLogPageDto()
AuditLogPageDto(List<AuditLogEventDto>, string)
Initializes a new instance of the AuditLogPageDto class.
Declaration
public AuditLogPageDto(List<AuditLogEventDto> items = null, string nextCursor = null)
Parameters
| Type | Name | Description |
|---|---|---|
| List<AuditLogEventDto> | items | items (required). |
| string | nextCursor | nextCursor. |
Properties
View SourceItems
Gets or Sets Items
Declaration
[DataMember(Name = "items", IsRequired = true, EmitDefaultValue = true)]
public List<AuditLogEventDto> Items { get; set; }
Property Value
| Type | Description |
|---|---|
| List<AuditLogEventDto> |
NextCursor
Gets or Sets NextCursor
Declaration
[DataMember(Name = "nextCursor", EmitDefaultValue = false)]
public string NextCursor { get; set; }
Property Value
| Type | Description |
|---|---|
| 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 |