Search Results for

    Show / Hide Table of Contents

    Class PhoneSummaryDto

    PhoneSummaryDto

    Inheritance
    object
    PhoneSummaryDto
    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 = "PhoneSummaryDto")]
    public class PhoneSummaryDto : IValidatableObject

    Constructors

    View Source

    PhoneSummaryDto()

    Initializes a new instance of the PhoneSummaryDto class.

    Declaration
    [JsonConstructor]
    protected PhoneSummaryDto()
    View Source

    PhoneSummaryDto(List<PhoneSummaryCountryDto>, bool, bool, int, List<PlanSummaryDto>)

    Initializes a new instance of the PhoneSummaryDto class.

    Declaration
    public PhoneSummaryDto(List<PhoneSummaryCountryDto> phoneCountrySummaries = null, bool hasPhoneNumbers = false, bool hasMissingPlans = false, int totalPhones = 0, List<PlanSummaryDto> plans = null)
    Parameters
    Type Name Description
    List<PhoneSummaryCountryDto> phoneCountrySummaries

    phoneCountrySummaries (required).

    bool hasPhoneNumbers

    hasPhoneNumbers (required).

    bool hasMissingPlans

    hasMissingPlans (required).

    int totalPhones

    totalPhones (required).

    List<PlanSummaryDto> plans

    plans (required).

    Properties

    View Source

    HasMissingPlans

    Gets or Sets HasMissingPlans

    Declaration
    [DataMember(Name = "hasMissingPlans", IsRequired = true, EmitDefaultValue = true)]
    public bool HasMissingPlans { get; set; }
    Property Value
    Type Description
    bool
    View Source

    HasPhoneNumbers

    Gets or Sets HasPhoneNumbers

    Declaration
    [DataMember(Name = "hasPhoneNumbers", IsRequired = true, EmitDefaultValue = true)]
    public bool HasPhoneNumbers { get; set; }
    Property Value
    Type Description
    bool
    View Source

    PhoneCountrySummaries

    Gets or Sets PhoneCountrySummaries

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

    Plans

    Gets or Sets Plans

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

    TotalPhones

    Gets or Sets TotalPhones

    Declaration
    [DataMember(Name = "totalPhones", IsRequired = true, EmitDefaultValue = true)]
    public int TotalPhones { get; set; }
    Property Value
    Type Description
    int

    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.