All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.type.OutboundSmsPrice Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.twilio.type;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.ToString;

import java.util.List;
import java.util.Objects;

/**
 * Pricing details per sms.
 *
 * 

* For more information see: * Message Pricing Docs *

*/ @JsonIgnoreProperties(ignoreUnknown = true) @ToString public class OutboundSmsPrice { private final String mcc; private final String mnc; private final String carrier; private final List prices; /** * Initialize a OutboundSmsPrice. * * @param mcc mcc identifier * @param mnc mnc identifier * @param carrier carrier name * @param prices prices for incoming sms */ @JsonCreator public OutboundSmsPrice(@JsonProperty("mcc") final String mcc, @JsonProperty("mnc") final String mnc, @JsonProperty("carrier") final String carrier, @JsonProperty("prices") final List prices) { this.mcc = mcc; this.mnc = mnc; this.carrier = carrier; this.prices = prices; } public String getMcc() { return mcc; } public String getMnc() { return mnc; } public String getCarrier() { return carrier; } public List getPrices() { return prices; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } OutboundSmsPrice other = (OutboundSmsPrice) o; return Objects.equals(this.mcc, other.mcc) && Objects.equals(this.mnc, other.mnc) && Objects.equals(this.carrier, other.carrier) && Objects.equals(this.prices, other.prices); } @Override public int hashCode() { return Objects.hash(this.mcc, this.mnc, this.carrier, this.prices); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy