Class ConnectorSyncResult
ConnectorSyncResult
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "ConnectorSyncResult")]
public class ConnectorSyncResult : IValidatableObject
Constructors
View SourceConnectorSyncResult()
Initializes a new instance of the ConnectorSyncResult class.
Declaration
[JsonConstructor]
protected ConnectorSyncResult()
ConnectorSyncResult(int, List<string>, List<Guid>)
Initializes a new instance of the ConnectorSyncResult class.
Declaration
public ConnectorSyncResult(int emailSyncCount = 0, List<string> logs = null, List<Guid> emailIds = null)
Parameters
| Type | Name | Description |
|---|---|---|
| int | emailSyncCount | emailSyncCount (required). |
| List<string> | logs | logs. |
| List<Guid> | emailIds | emailIds. |
Properties
View SourceEmailIds
Gets or Sets EmailIds
Declaration
[DataMember(Name = "emailIds", EmitDefaultValue = false)]
public List<Guid> EmailIds { get; set; }
Property Value
| Type | Description |
|---|---|
| List<Guid> |
EmailSyncCount
Gets or Sets EmailSyncCount
Declaration
[DataMember(Name = "emailSyncCount", IsRequired = true, EmitDefaultValue = true)]
public int EmailSyncCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Logs
Gets or Sets Logs
Declaration
[DataMember(Name = "logs", EmitDefaultValue = false)]
public List<string> Logs { get; set; }
Property Value
| Type | Description |
|---|---|
| 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 |