Class SetInboxFavouritedOptions
Options for setting inbox favourite state
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "SetInboxFavouritedOptions")]
public class SetInboxFavouritedOptions : IValidatableObject
Constructors
View SourceSetInboxFavouritedOptions()
Initializes a new instance of the SetInboxFavouritedOptions class.
Declaration
[JsonConstructor]
protected SetInboxFavouritedOptions()
SetInboxFavouritedOptions(bool)
Initializes a new instance of the SetInboxFavouritedOptions class.
Declaration
public SetInboxFavouritedOptions(bool state = false)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | state | Is the inbox a favorite. Marking an inbox as a favorite is typically done in the dashboard for quick access or filtering (required). |
Properties
View SourceState
Is the inbox a favorite. Marking an inbox as a favorite is typically done in the dashboard for quick access or filtering
Declaration
[DataMember(Name = "state", IsRequired = true, EmitDefaultValue = true)]
public bool State { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Is the inbox a favorite. Marking an inbox as a favorite is typically done in the dashboard for quick access or filtering |
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 |