Class ConnectorSyncRequestResult
ConnectorSyncRequestResult
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "ConnectorSyncRequestResult")]
public class ConnectorSyncRequestResult : IValidatableObject
Constructors
View SourceConnectorSyncRequestResult(ConnectorSyncResult, string, Guid)
Initializes a new instance of the ConnectorSyncRequestResult class.
Declaration
public ConnectorSyncRequestResult(ConnectorSyncResult syncResult = null, string exception = null, Guid eventId = default)
Parameters
Type | Name | Description |
---|---|---|
ConnectorSyncResult | syncResult | syncResult. |
string | exception | exception. |
Guid | eventId | eventId. |
Properties
View SourceEventId
Gets or Sets EventId
Declaration
[DataMember(Name = "eventId", EmitDefaultValue = false)]
public Guid EventId { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Exception
Gets or Sets Exception
Declaration
[DataMember(Name = "exception", EmitDefaultValue = false)]
public string Exception { get; set; }
Property Value
Type | Description |
---|---|
string |
SyncResult
Gets or Sets SyncResult
Declaration
[DataMember(Name = "syncResult", EmitDefaultValue = false)]
public ConnectorSyncResult SyncResult { get; set; }
Property Value
Type | Description |
---|---|
ConnectorSyncResult |
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 |