Class SpfMechanismResult
SpfMechanismResult
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "SpfMechanismResult")]
public class SpfMechanismResult : IValidatableObject
Constructors
View SourceSpfMechanismResult()
Initializes a new instance of the SpfMechanismResult class.
Declaration
[JsonConstructor]
protected SpfMechanismResult()
SpfMechanismResult(string, string, string)
Initializes a new instance of the SpfMechanismResult class.
Declaration
public SpfMechanismResult(string kind = null, string value = null, string qualifier = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | kind | kind (required). |
| string | value | value. |
| string | qualifier | qualifier. |
Properties
View SourceKind
Gets or Sets Kind
Declaration
[DataMember(Name = "kind", IsRequired = true, EmitDefaultValue = true)]
public string Kind { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Qualifier
Gets or Sets Qualifier
Declaration
[DataMember(Name = "qualifier", EmitDefaultValue = false)]
public string Qualifier { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Value
Gets or Sets Value
Declaration
[DataMember(Name = "value", EmitDefaultValue = false)]
public string Value { 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 |