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

com.amazonaws.services.connectcases.model.CreateCaseRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Connect Cases module holds the client classes that are used for communicating with Amazon Connect Cases 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.connectcases.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, * the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with * idempotent APIs. *

*/ private String clientToken; /** *

* The unique identifier of the Cases domain. *

*/ private String domainId; /** *

* An array of objects with field ID (matching ListFields/DescribeField) and value union data. *

*/ private java.util.List fields; private UserUnion performedBy; /** *

* A unique identifier of a template. *

*/ private String templateId; /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, * the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with * idempotent APIs. *

* * @param clientToken * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries * safe with idempotent APIs. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, * the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with * idempotent APIs. *

* * @return A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see * Making * retries safe with idempotent APIs. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, * the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with * idempotent APIs. *

* * @param clientToken * A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not * provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries * safe with idempotent APIs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The unique identifier of the Cases domain. *

* * @param domainId * The unique identifier of the Cases domain. */ public void setDomainId(String domainId) { this.domainId = domainId; } /** *

* The unique identifier of the Cases domain. *

* * @return The unique identifier of the Cases domain. */ public String getDomainId() { return this.domainId; } /** *

* The unique identifier of the Cases domain. *

* * @param domainId * The unique identifier of the Cases domain. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withDomainId(String domainId) { setDomainId(domainId); return this; } /** *

* An array of objects with field ID (matching ListFields/DescribeField) and value union data. *

* * @return An array of objects with field ID (matching ListFields/DescribeField) and value union data. */ public java.util.List getFields() { return fields; } /** *

* An array of objects with field ID (matching ListFields/DescribeField) and value union data. *

* * @param fields * An array of objects with field ID (matching ListFields/DescribeField) and value union data. */ public void setFields(java.util.Collection fields) { if (fields == null) { this.fields = null; return; } this.fields = new java.util.ArrayList(fields); } /** *

* An array of objects with field ID (matching ListFields/DescribeField) and value union data. *

*

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

* * @param fields * An array of objects with field ID (matching ListFields/DescribeField) and value union data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withFields(FieldValue... fields) { if (this.fields == null) { setFields(new java.util.ArrayList(fields.length)); } for (FieldValue ele : fields) { this.fields.add(ele); } return this; } /** *

* An array of objects with field ID (matching ListFields/DescribeField) and value union data. *

* * @param fields * An array of objects with field ID (matching ListFields/DescribeField) and value union data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withFields(java.util.Collection fields) { setFields(fields); return this; } /** * @param performedBy */ public void setPerformedBy(UserUnion performedBy) { this.performedBy = performedBy; } /** * @return */ public UserUnion getPerformedBy() { return this.performedBy; } /** * @param performedBy * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withPerformedBy(UserUnion performedBy) { setPerformedBy(performedBy); return this; } /** *

* A unique identifier of a template. *

* * @param templateId * A unique identifier of a template. */ public void setTemplateId(String templateId) { this.templateId = templateId; } /** *

* A unique identifier of a template. *

* * @return A unique identifier of a template. */ public String getTemplateId() { return this.templateId; } /** *

* A unique identifier of a template. *

* * @param templateId * A unique identifier of a template. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateCaseRequest withTemplateId(String templateId) { setTemplateId(templateId); 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 (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getDomainId() != null) sb.append("DomainId: ").append(getDomainId()).append(","); if (getFields() != null) sb.append("Fields: ").append(getFields()).append(","); if (getPerformedBy() != null) sb.append("PerformedBy: ").append(getPerformedBy()).append(","); if (getTemplateId() != null) sb.append("TemplateId: ").append(getTemplateId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateCaseRequest == false) return false; CreateCaseRequest other = (CreateCaseRequest) obj; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getDomainId() == null ^ this.getDomainId() == null) return false; if (other.getDomainId() != null && other.getDomainId().equals(this.getDomainId()) == false) return false; if (other.getFields() == null ^ this.getFields() == null) return false; if (other.getFields() != null && other.getFields().equals(this.getFields()) == false) return false; if (other.getPerformedBy() == null ^ this.getPerformedBy() == null) return false; if (other.getPerformedBy() != null && other.getPerformedBy().equals(this.getPerformedBy()) == false) return false; if (other.getTemplateId() == null ^ this.getTemplateId() == null) return false; if (other.getTemplateId() != null && other.getTemplateId().equals(this.getTemplateId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getDomainId() == null) ? 0 : getDomainId().hashCode()); hashCode = prime * hashCode + ((getFields() == null) ? 0 : getFields().hashCode()); hashCode = prime * hashCode + ((getPerformedBy() == null) ? 0 : getPerformedBy().hashCode()); hashCode = prime * hashCode + ((getTemplateId() == null) ? 0 : getTemplateId().hashCode()); return hashCode; } @Override public CreateCaseRequest clone() { return (CreateCaseRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy