com.amazonaws.services.forecast.model.CreateExplainabilityRequest 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.forecast.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 CreateExplainabilityRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* A unique name for the Explainability.
*
*/
private String explainabilityName;
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*
*/
private String resourceArn;
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*/
private ExplainabilityConfig explainabilityConfig;
private DataSource dataSource;
private Schema schema;
/**
*
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*
*/
private Boolean enableVisualization;
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*/
private String startDateTime;
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*/
private String endDateTime;
/**
*
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional
* value, both of which you define. Tag keys and values are case sensitive.
*
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging
* schema is used across other services and resources, the character restrictions of those services also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
. Values
* can have this prefix. If a tag value has aws
as its prefix but the key does not, Forecast considers
* it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of
* aws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this
* prefix.
*
*
*
*/
private java.util.List tags;
/**
*
* A unique name for the Explainability.
*
*
* @param explainabilityName
* A unique name for the Explainability.
*/
public void setExplainabilityName(String explainabilityName) {
this.explainabilityName = explainabilityName;
}
/**
*
* A unique name for the Explainability.
*
*
* @return A unique name for the Explainability.
*/
public String getExplainabilityName() {
return this.explainabilityName;
}
/**
*
* A unique name for the Explainability.
*
*
* @param explainabilityName
* A unique name for the Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withExplainabilityName(String explainabilityName) {
setExplainabilityName(explainabilityName);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*
*
* @param resourceArn
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*/
public void setResourceArn(String resourceArn) {
this.resourceArn = resourceArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*
*
* @return The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*/
public String getResourceArn() {
return this.resourceArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
*
*
* @param resourceArn
* The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withResourceArn(String resourceArn) {
setResourceArn(resourceArn);
return this;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @param explainabilityConfig
* The configuration settings that define the granularity of time series and time points for the
* Explainability.
*/
public void setExplainabilityConfig(ExplainabilityConfig explainabilityConfig) {
this.explainabilityConfig = explainabilityConfig;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @return The configuration settings that define the granularity of time series and time points for the
* Explainability.
*/
public ExplainabilityConfig getExplainabilityConfig() {
return this.explainabilityConfig;
}
/**
*
* The configuration settings that define the granularity of time series and time points for the Explainability.
*
*
* @param explainabilityConfig
* The configuration settings that define the granularity of time series and time points for the
* Explainability.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withExplainabilityConfig(ExplainabilityConfig explainabilityConfig) {
setExplainabilityConfig(explainabilityConfig);
return this;
}
/**
* @param dataSource
*/
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
/**
* @return
*/
public DataSource getDataSource() {
return this.dataSource;
}
/**
* @param dataSource
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withDataSource(DataSource dataSource) {
setDataSource(dataSource);
return this;
}
/**
* @param schema
*/
public void setSchema(Schema schema) {
this.schema = schema;
}
/**
* @return
*/
public Schema getSchema() {
return this.schema;
}
/**
* @param schema
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withSchema(Schema schema) {
setSchema(schema);
return this;
}
/**
*
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*
*
* @param enableVisualization
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*/
public void setEnableVisualization(Boolean enableVisualization) {
this.enableVisualization = enableVisualization;
}
/**
*
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*
*
* @return Create an Explainability visualization that is viewable within the Amazon Web Services console.
*/
public Boolean getEnableVisualization() {
return this.enableVisualization;
}
/**
*
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*
*
* @param enableVisualization
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withEnableVisualization(Boolean enableVisualization) {
setEnableVisualization(enableVisualization);
return this;
}
/**
*
* Create an Explainability visualization that is viewable within the Amazon Web Services console.
*
*
* @return Create an Explainability visualization that is viewable within the Amazon Web Services console.
*/
public Boolean isEnableVisualization() {
return this.enableVisualization;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @param startDateTime
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*/
public void setStartDateTime(String startDateTime) {
this.startDateTime = startDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @return If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*/
public String getStartDateTime() {
return this.startDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @param startDateTime
* If TimePointGranularity
is set to SPECIFIC
, define the first point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withStartDateTime(String startDateTime) {
setStartDateTime(startDateTime);
return this;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @param endDateTime
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*/
public void setEndDateTime(String endDateTime) {
this.endDateTime = endDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @return If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*/
public String getEndDateTime() {
return this.endDateTime;
}
/**
*
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
*
*
* @param endDateTime
* If TimePointGranularity
is set to SPECIFIC
, define the last time point for the
* Explainability.
*
* Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withEndDateTime(String endDateTime) {
setEndDateTime(endDateTime);
return this;
}
/**
*
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional
* value, both of which you define. Tag keys and values are case sensitive.
*
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging
* schema is used across other services and resources, the character restrictions of those services also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
. Values
* can have this prefix. If a tag value has aws
as its prefix but the key does not, Forecast considers
* it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of
* aws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this
* prefix.
*
*
*
*
* @return Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an
* optional value, both of which you define. Tag keys and values are case sensitive.
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your
* tagging schema is used across other services and resources, the character restrictions of those services
* also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
.
* Values can have this prefix. If a tag value has aws
as its prefix but the key does not,
* Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the
* key prefix of aws
do not count against your tags per resource limit. You cannot edit or
* delete tag keys with this prefix.
*
*
*/
public java.util.List getTags() {
return tags;
}
/**
*
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional
* value, both of which you define. Tag keys and values are case sensitive.
*
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging
* schema is used across other services and resources, the character restrictions of those services also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
. Values
* can have this prefix. If a tag value has aws
as its prefix but the key does not, Forecast considers
* it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of
* aws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this
* prefix.
*
*
*
*
* @param tags
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an
* optional value, both of which you define. Tag keys and values are case sensitive.
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your
* tagging schema is used across other services and resources, the character restrictions of those services
* also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
.
* Values can have this prefix. If a tag value has aws
as its prefix but the key does not,
* Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key
* prefix of aws
do not count against your tags per resource limit. You cannot edit or delete
* tag keys with this prefix.
*
*
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional
* value, both of which you define. Tag keys and values are case sensitive.
*
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging
* schema is used across other services and resources, the character restrictions of those services also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
. Values
* can have this prefix. If a tag value has aws
as its prefix but the key does not, Forecast considers
* it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of
* aws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this
* prefix.
*
*
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an
* optional value, both of which you define. Tag keys and values are case sensitive.
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your
* tagging schema is used across other services and resources, the character restrictions of those services
* also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
.
* Values can have this prefix. If a tag value has aws
as its prefix but the key does not,
* Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key
* prefix of aws
do not count against your tags per resource limit. You cannot edit or delete
* tag keys with this prefix.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional
* value, both of which you define. Tag keys and values are case sensitive.
*
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging
* schema is used across other services and resources, the character restrictions of those services also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
. Values
* can have this prefix. If a tag value has aws
as its prefix but the key does not, Forecast considers
* it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of
* aws
do not count against your tags per resource limit. You cannot edit or delete tag keys with this
* prefix.
*
*
*
*
* @param tags
* Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an
* optional value, both of which you define. Tag keys and values are case sensitive.
*
* The following restrictions apply to tags:
*
*
* -
*
* For each resource, each tag key must be unique and each tag key must have one value.
*
*
* -
*
* Maximum number of tags per resource: 50.
*
*
* -
*
* Maximum key length: 128 Unicode characters in UTF-8.
*
*
* -
*
* Maximum value length: 256 Unicode characters in UTF-8.
*
*
* -
*
* Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your
* tagging schema is used across other services and resources, the character restrictions of those services
* also apply.
*
*
* -
*
* Key prefixes cannot include any upper or lowercase combination of aws:
or AWS:
.
* Values can have this prefix. If a tag value has aws
as its prefix but the key does not,
* Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key
* prefix of aws
do not count against your tags per resource limit. You cannot edit or delete
* tag keys with this prefix.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateExplainabilityRequest withTags(java.util.Collection tags) {
setTags(tags);
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 (getExplainabilityName() != null)
sb.append("ExplainabilityName: ").append(getExplainabilityName()).append(",");
if (getResourceArn() != null)
sb.append("ResourceArn: ").append(getResourceArn()).append(",");
if (getExplainabilityConfig() != null)
sb.append("ExplainabilityConfig: ").append(getExplainabilityConfig()).append(",");
if (getDataSource() != null)
sb.append("DataSource: ").append(getDataSource()).append(",");
if (getSchema() != null)
sb.append("Schema: ").append(getSchema()).append(",");
if (getEnableVisualization() != null)
sb.append("EnableVisualization: ").append(getEnableVisualization()).append(",");
if (getStartDateTime() != null)
sb.append("StartDateTime: ").append(getStartDateTime()).append(",");
if (getEndDateTime() != null)
sb.append("EndDateTime: ").append(getEndDateTime()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateExplainabilityRequest == false)
return false;
CreateExplainabilityRequest other = (CreateExplainabilityRequest) obj;
if (other.getExplainabilityName() == null ^ this.getExplainabilityName() == null)
return false;
if (other.getExplainabilityName() != null && other.getExplainabilityName().equals(this.getExplainabilityName()) == false)
return false;
if (other.getResourceArn() == null ^ this.getResourceArn() == null)
return false;
if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == false)
return false;
if (other.getExplainabilityConfig() == null ^ this.getExplainabilityConfig() == null)
return false;
if (other.getExplainabilityConfig() != null && other.getExplainabilityConfig().equals(this.getExplainabilityConfig()) == false)
return false;
if (other.getDataSource() == null ^ this.getDataSource() == null)
return false;
if (other.getDataSource() != null && other.getDataSource().equals(this.getDataSource()) == false)
return false;
if (other.getSchema() == null ^ this.getSchema() == null)
return false;
if (other.getSchema() != null && other.getSchema().equals(this.getSchema()) == false)
return false;
if (other.getEnableVisualization() == null ^ this.getEnableVisualization() == null)
return false;
if (other.getEnableVisualization() != null && other.getEnableVisualization().equals(this.getEnableVisualization()) == false)
return false;
if (other.getStartDateTime() == null ^ this.getStartDateTime() == null)
return false;
if (other.getStartDateTime() != null && other.getStartDateTime().equals(this.getStartDateTime()) == false)
return false;
if (other.getEndDateTime() == null ^ this.getEndDateTime() == null)
return false;
if (other.getEndDateTime() != null && other.getEndDateTime().equals(this.getEndDateTime()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getExplainabilityName() == null) ? 0 : getExplainabilityName().hashCode());
hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().hashCode());
hashCode = prime * hashCode + ((getExplainabilityConfig() == null) ? 0 : getExplainabilityConfig().hashCode());
hashCode = prime * hashCode + ((getDataSource() == null) ? 0 : getDataSource().hashCode());
hashCode = prime * hashCode + ((getSchema() == null) ? 0 : getSchema().hashCode());
hashCode = prime * hashCode + ((getEnableVisualization() == null) ? 0 : getEnableVisualization().hashCode());
hashCode = prime * hashCode + ((getStartDateTime() == null) ? 0 : getStartDateTime().hashCode());
hashCode = prime * hashCode + ((getEndDateTime() == null) ? 0 : getEndDateTime().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public CreateExplainabilityRequest clone() {
return (CreateExplainabilityRequest) super.clone();
}
}