/* * Copyright 2010-2023 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.textract.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** *

* Analyzes identity documents for relevant information. This information is * extracted and returned as IdentityDocumentFields, which records * both the normalized field and value of the extracted text. Unlike other * Amazon Textract operations, AnalyzeID doesn't return any * Geometry data. *

*/ public class AnalyzeIDRequest extends AmazonWebServiceRequest implements Serializable { /** *

* The document being passed to AnalyzeID. *

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

* The document being passed to AnalyzeID. *

* * @return

* The document being passed to AnalyzeID. *

*/ public java.util.List getDocumentPages() { return documentPages; } /** *

* The document being passed to AnalyzeID. *

* * @param documentPages

* The document being passed to AnalyzeID. *

*/ public void setDocumentPages(java.util.Collection documentPages) { if (documentPages == null) { this.documentPages = null; return; } this.documentPages = new java.util.ArrayList(documentPages); } /** *

* The document being passed to AnalyzeID. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param documentPages

* The document being passed to AnalyzeID. *

* @return A reference to this updated object so that method calls can be * chained together. */ public AnalyzeIDRequest withDocumentPages(Document... documentPages) { if (getDocumentPages() == null) { this.documentPages = new java.util.ArrayList(documentPages.length); } for (Document value : documentPages) { this.documentPages.add(value); } return this; } /** *

* The document being passed to AnalyzeID. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param documentPages

* The document being passed to AnalyzeID. *

* @return A reference to this updated object so that method calls can be * chained together. */ public AnalyzeIDRequest withDocumentPages(java.util.Collection documentPages) { setDocumentPages(documentPages); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDocumentPages() != null) sb.append("DocumentPages: " + getDocumentPages()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDocumentPages() == null) ? 0 : getDocumentPages().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AnalyzeIDRequest == false) return false; AnalyzeIDRequest other = (AnalyzeIDRequest) obj; if (other.getDocumentPages() == null ^ this.getDocumentPages() == null) return false; if (other.getDocumentPages() != null && other.getDocumentPages().equals(this.getDocumentPages()) == false) return false; return true; } }