com.amazonaws.services.route53domains.model.ListPricesResult Maven / Gradle / Ivy
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.route53domains.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListPricesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only the
* pricing for that TLD.
*
*/
private com.amazonaws.internal.SdkInternalList prices;
/**
*
* If there are more prices than you specified for MaxItems
in the request, submit another request and
* include the value of NextPageMarker
in the value of Marker
.
*
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*
*/
private String nextPageMarker;
/**
*
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only the
* pricing for that TLD.
*
*
* @return A complex type that includes all the pricing information. If you specify a TLD, this array contains only
* the pricing for that TLD.
*/
public java.util.List getPrices() {
if (prices == null) {
prices = new com.amazonaws.internal.SdkInternalList();
}
return prices;
}
/**
*
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only the
* pricing for that TLD.
*
*
* @param prices
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only
* the pricing for that TLD.
*/
public void setPrices(java.util.Collection prices) {
if (prices == null) {
this.prices = null;
return;
}
this.prices = new com.amazonaws.internal.SdkInternalList(prices);
}
/**
*
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only the
* pricing for that TLD.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPrices(java.util.Collection)} or {@link #withPrices(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param prices
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only
* the pricing for that TLD.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPricesResult withPrices(DomainPrice... prices) {
if (this.prices == null) {
setPrices(new com.amazonaws.internal.SdkInternalList(prices.length));
}
for (DomainPrice ele : prices) {
this.prices.add(ele);
}
return this;
}
/**
*
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only the
* pricing for that TLD.
*
*
* @param prices
* A complex type that includes all the pricing information. If you specify a TLD, this array contains only
* the pricing for that TLD.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPricesResult withPrices(java.util.Collection prices) {
setPrices(prices);
return this;
}
/**
*
* If there are more prices than you specified for MaxItems
in the request, submit another request and
* include the value of NextPageMarker
in the value of Marker
.
*
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*
*
* @param nextPageMarker
* If there are more prices than you specified for MaxItems
in the request, submit another
* request and include the value of NextPageMarker
in the value of Marker
.
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*/
public void setNextPageMarker(String nextPageMarker) {
this.nextPageMarker = nextPageMarker;
}
/**
*
* If there are more prices than you specified for MaxItems
in the request, submit another request and
* include the value of NextPageMarker
in the value of Marker
.
*
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*
*
* @return If there are more prices than you specified for MaxItems
in the request, submit another
* request and include the value of NextPageMarker
in the value of Marker
.
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*/
public String getNextPageMarker() {
return this.nextPageMarker;
}
/**
*
* If there are more prices than you specified for MaxItems
in the request, submit another request and
* include the value of NextPageMarker
in the value of Marker
.
*
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
*
*
* @param nextPageMarker
* If there are more prices than you specified for MaxItems
in the request, submit another
* request and include the value of NextPageMarker
in the value of Marker
.
*
* Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPricesResult withNextPageMarker(String nextPageMarker) {
setNextPageMarker(nextPageMarker);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getPrices() != null)
sb.append("Prices: ").append(getPrices()).append(",");
if (getNextPageMarker() != null)
sb.append("NextPageMarker: ").append(getNextPageMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListPricesResult == false)
return false;
ListPricesResult other = (ListPricesResult) obj;
if (other.getPrices() == null ^ this.getPrices() == null)
return false;
if (other.getPrices() != null && other.getPrices().equals(this.getPrices()) == false)
return false;
if (other.getNextPageMarker() == null ^ this.getNextPageMarker() == null)
return false;
if (other.getNextPageMarker() != null && other.getNextPageMarker().equals(this.getNextPageMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPrices() == null) ? 0 : getPrices().hashCode());
hashCode = prime * hashCode + ((getNextPageMarker() == null) ? 0 : getNextPageMarker().hashCode());
return hashCode;
}
@Override
public ListPricesResult clone() {
try {
return (ListPricesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}