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

com.amazonaws.services.chime.model.PhoneNumberOrder Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Chime module holds the client classes that are used for communicating with Amazon Chime Service

The newest version!
/*
 * 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.chime.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The details of a phone number order created for Amazon Chime. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PhoneNumberOrder implements Serializable, Cloneable, StructuredPojo { /** *

* The phone number order ID. *

*/ private String phoneNumberOrderId; /** *

* The phone number order product type. *

*/ private String productType; /** *

* The status of the phone number order. *

*/ private String status; /** *

* The ordered phone number details, such as the phone number in E.164 format and the phone number status. *

*/ private java.util.List orderedPhoneNumbers; /** *

* The phone number order creation time stamp, in ISO 8601 format. *

*/ private java.util.Date createdTimestamp; /** *

* The updated phone number order time stamp, in ISO 8601 format. *

*/ private java.util.Date updatedTimestamp; /** *

* The phone number order ID. *

* * @param phoneNumberOrderId * The phone number order ID. */ public void setPhoneNumberOrderId(String phoneNumberOrderId) { this.phoneNumberOrderId = phoneNumberOrderId; } /** *

* The phone number order ID. *

* * @return The phone number order ID. */ public String getPhoneNumberOrderId() { return this.phoneNumberOrderId; } /** *

* The phone number order ID. *

* * @param phoneNumberOrderId * The phone number order ID. * @return Returns a reference to this object so that method calls can be chained together. */ public PhoneNumberOrder withPhoneNumberOrderId(String phoneNumberOrderId) { setPhoneNumberOrderId(phoneNumberOrderId); return this; } /** *

* The phone number order product type. *

* * @param productType * The phone number order product type. * @see PhoneNumberProductType */ public void setProductType(String productType) { this.productType = productType; } /** *

* The phone number order product type. *

* * @return The phone number order product type. * @see PhoneNumberProductType */ public String getProductType() { return this.productType; } /** *

* The phone number order product type. *

* * @param productType * The phone number order product type. * @return Returns a reference to this object so that method calls can be chained together. * @see PhoneNumberProductType */ public PhoneNumberOrder withProductType(String productType) { setProductType(productType); return this; } /** *

* The phone number order product type. *

* * @param productType * The phone number order product type. * @return Returns a reference to this object so that method calls can be chained together. * @see PhoneNumberProductType */ public PhoneNumberOrder withProductType(PhoneNumberProductType productType) { this.productType = productType.toString(); return this; } /** *

* The status of the phone number order. *

* * @param status * The status of the phone number order. * @see PhoneNumberOrderStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the phone number order. *

* * @return The status of the phone number order. * @see PhoneNumberOrderStatus */ public String getStatus() { return this.status; } /** *

* The status of the phone number order. *

* * @param status * The status of the phone number order. * @return Returns a reference to this object so that method calls can be chained together. * @see PhoneNumberOrderStatus */ public PhoneNumberOrder withStatus(String status) { setStatus(status); return this; } /** *

* The status of the phone number order. *

* * @param status * The status of the phone number order. * @return Returns a reference to this object so that method calls can be chained together. * @see PhoneNumberOrderStatus */ public PhoneNumberOrder withStatus(PhoneNumberOrderStatus status) { this.status = status.toString(); return this; } /** *

* The ordered phone number details, such as the phone number in E.164 format and the phone number status. *

* * @return The ordered phone number details, such as the phone number in E.164 format and the phone number status. */ public java.util.List getOrderedPhoneNumbers() { return orderedPhoneNumbers; } /** *

* The ordered phone number details, such as the phone number in E.164 format and the phone number status. *

* * @param orderedPhoneNumbers * The ordered phone number details, such as the phone number in E.164 format and the phone number status. */ public void setOrderedPhoneNumbers(java.util.Collection orderedPhoneNumbers) { if (orderedPhoneNumbers == null) { this.orderedPhoneNumbers = null; return; } this.orderedPhoneNumbers = new java.util.ArrayList(orderedPhoneNumbers); } /** *

* The ordered phone number details, such as the phone number in E.164 format and the phone number status. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setOrderedPhoneNumbers(java.util.Collection)} or {@link #withOrderedPhoneNumbers(java.util.Collection)} * if you want to override the existing values. *

* * @param orderedPhoneNumbers * The ordered phone number details, such as the phone number in E.164 format and the phone number status. * @return Returns a reference to this object so that method calls can be chained together. */ public PhoneNumberOrder withOrderedPhoneNumbers(OrderedPhoneNumber... orderedPhoneNumbers) { if (this.orderedPhoneNumbers == null) { setOrderedPhoneNumbers(new java.util.ArrayList(orderedPhoneNumbers.length)); } for (OrderedPhoneNumber ele : orderedPhoneNumbers) { this.orderedPhoneNumbers.add(ele); } return this; } /** *

* The ordered phone number details, such as the phone number in E.164 format and the phone number status. *

* * @param orderedPhoneNumbers * The ordered phone number details, such as the phone number in E.164 format and the phone number status. * @return Returns a reference to this object so that method calls can be chained together. */ public PhoneNumberOrder withOrderedPhoneNumbers(java.util.Collection orderedPhoneNumbers) { setOrderedPhoneNumbers(orderedPhoneNumbers); return this; } /** *

* The phone number order creation time stamp, in ISO 8601 format. *

* * @param createdTimestamp * The phone number order creation time stamp, in ISO 8601 format. */ public void setCreatedTimestamp(java.util.Date createdTimestamp) { this.createdTimestamp = createdTimestamp; } /** *

* The phone number order creation time stamp, in ISO 8601 format. *

* * @return The phone number order creation time stamp, in ISO 8601 format. */ public java.util.Date getCreatedTimestamp() { return this.createdTimestamp; } /** *

* The phone number order creation time stamp, in ISO 8601 format. *

* * @param createdTimestamp * The phone number order creation time stamp, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public PhoneNumberOrder withCreatedTimestamp(java.util.Date createdTimestamp) { setCreatedTimestamp(createdTimestamp); return this; } /** *

* The updated phone number order time stamp, in ISO 8601 format. *

* * @param updatedTimestamp * The updated phone number order time stamp, in ISO 8601 format. */ public void setUpdatedTimestamp(java.util.Date updatedTimestamp) { this.updatedTimestamp = updatedTimestamp; } /** *

* The updated phone number order time stamp, in ISO 8601 format. *

* * @return The updated phone number order time stamp, in ISO 8601 format. */ public java.util.Date getUpdatedTimestamp() { return this.updatedTimestamp; } /** *

* The updated phone number order time stamp, in ISO 8601 format. *

* * @param updatedTimestamp * The updated phone number order time stamp, in ISO 8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public PhoneNumberOrder withUpdatedTimestamp(java.util.Date updatedTimestamp) { setUpdatedTimestamp(updatedTimestamp); 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 (getPhoneNumberOrderId() != null) sb.append("PhoneNumberOrderId: ").append(getPhoneNumberOrderId()).append(","); if (getProductType() != null) sb.append("ProductType: ").append(getProductType()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getOrderedPhoneNumbers() != null) sb.append("OrderedPhoneNumbers: ").append(getOrderedPhoneNumbers()).append(","); if (getCreatedTimestamp() != null) sb.append("CreatedTimestamp: ").append(getCreatedTimestamp()).append(","); if (getUpdatedTimestamp() != null) sb.append("UpdatedTimestamp: ").append(getUpdatedTimestamp()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PhoneNumberOrder == false) return false; PhoneNumberOrder other = (PhoneNumberOrder) obj; if (other.getPhoneNumberOrderId() == null ^ this.getPhoneNumberOrderId() == null) return false; if (other.getPhoneNumberOrderId() != null && other.getPhoneNumberOrderId().equals(this.getPhoneNumberOrderId()) == false) return false; if (other.getProductType() == null ^ this.getProductType() == null) return false; if (other.getProductType() != null && other.getProductType().equals(this.getProductType()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getOrderedPhoneNumbers() == null ^ this.getOrderedPhoneNumbers() == null) return false; if (other.getOrderedPhoneNumbers() != null && other.getOrderedPhoneNumbers().equals(this.getOrderedPhoneNumbers()) == false) return false; if (other.getCreatedTimestamp() == null ^ this.getCreatedTimestamp() == null) return false; if (other.getCreatedTimestamp() != null && other.getCreatedTimestamp().equals(this.getCreatedTimestamp()) == false) return false; if (other.getUpdatedTimestamp() == null ^ this.getUpdatedTimestamp() == null) return false; if (other.getUpdatedTimestamp() != null && other.getUpdatedTimestamp().equals(this.getUpdatedTimestamp()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPhoneNumberOrderId() == null) ? 0 : getPhoneNumberOrderId().hashCode()); hashCode = prime * hashCode + ((getProductType() == null) ? 0 : getProductType().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getOrderedPhoneNumbers() == null) ? 0 : getOrderedPhoneNumbers().hashCode()); hashCode = prime * hashCode + ((getCreatedTimestamp() == null) ? 0 : getCreatedTimestamp().hashCode()); hashCode = prime * hashCode + ((getUpdatedTimestamp() == null) ? 0 : getUpdatedTimestamp().hashCode()); return hashCode; } @Override public PhoneNumberOrder clone() { try { return (PhoneNumberOrder) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.chime.model.transform.PhoneNumberOrderMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy