Class DomainGroup
DomainGroup
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "DomainGroup")]
public class DomainGroup : IValidatableObject
Constructors
View SourceDomainGroup()
Initializes a new instance of the DomainGroup class.
Declaration
[JsonConstructor]
protected DomainGroup()
DomainGroup(LabelEnum, List<DomainInformation>)
Initializes a new instance of the DomainGroup class.
Declaration
public DomainGroup(DomainGroup.LabelEnum label = (DomainGroup.LabelEnum)0, List<DomainInformation> domains = null)
Parameters
Type | Name | Description |
---|---|---|
DomainGroup.LabelEnum | label | label (required). |
List<DomainInformation> | domains | domains (required). |
Properties
View SourceDomains
Gets or Sets Domains
Declaration
[DataMember(Name = "domains", IsRequired = true, EmitDefaultValue = true)]
public List<DomainInformation> Domains { get; set; }
Property Value
Type | Description |
---|---|
List<DomainInformation> |
Label
Gets or Sets Label
Declaration
[DataMember(Name = "label", IsRequired = true, EmitDefaultValue = true)]
public DomainGroup.LabelEnum Label { get; set; }
Property Value
Type | Description |
---|---|
DomainGroup.LabelEnum |
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 |