Search Results for

    Show / Hide Table of Contents

    Class DomainGroup

    DomainGroup

    Inheritance
    object
    DomainGroup
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "DomainGroup")]
    public class DomainGroup : IValidatableObject

    Constructors

    View Source

    DomainGroup()

    Initializes a new instance of the DomainGroup class.

    Declaration
    [JsonConstructor]
    protected DomainGroup()
    View Source

    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 Source

    Domains

    Gets or Sets Domains

    Declaration
    [DataMember(Name = "domains", IsRequired = true, EmitDefaultValue = true)]
    public List<DomainInformation> Domains { get; set; }
    Property Value
    Type Description
    List<DomainInformation>
    View Source

    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 Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.