
com.amazonaws.services.billingconductor.model.CustomLineItemChargeDetails Maven / Gradle / Ivy
Show all versions of aws-java-sdk-billingconductor Show documentation
/*
* 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.billingconductor.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The charge details of a custom line item. It should contain only one of Flat
or Percentage
.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CustomLineItemChargeDetails implements Serializable, Cloneable, StructuredPojo {
/**
*
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line item.
*
*/
private CustomLineItemFlatChargeDetails flat;
/**
*
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage custom
* line item.
*
*/
private CustomLineItemPercentageChargeDetails percentage;
/**
*
* The type of the custom line item that indicates whether the charge is a fee or credit.
*
*/
private String type;
/**
*
* A representation of the line item filter.
*
*/
private java.util.List lineItemFilters;
/**
*
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line item.
*
*
* @param flat
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line
* item.
*/
public void setFlat(CustomLineItemFlatChargeDetails flat) {
this.flat = flat;
}
/**
*
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line item.
*
*
* @return A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line
* item.
*/
public CustomLineItemFlatChargeDetails getFlat() {
return this.flat;
}
/**
*
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line item.
*
*
* @param flat
* A CustomLineItemFlatChargeDetails
that describes the charge details of a flat custom line
* item.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomLineItemChargeDetails withFlat(CustomLineItemFlatChargeDetails flat) {
setFlat(flat);
return this;
}
/**
*
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage custom
* line item.
*
*
* @param percentage
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage
* custom line item.
*/
public void setPercentage(CustomLineItemPercentageChargeDetails percentage) {
this.percentage = percentage;
}
/**
*
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage custom
* line item.
*
*
* @return A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage
* custom line item.
*/
public CustomLineItemPercentageChargeDetails getPercentage() {
return this.percentage;
}
/**
*
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage custom
* line item.
*
*
* @param percentage
* A CustomLineItemPercentageChargeDetails
that describes the charge details of a percentage
* custom line item.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomLineItemChargeDetails withPercentage(CustomLineItemPercentageChargeDetails percentage) {
setPercentage(percentage);
return this;
}
/**
*
* The type of the custom line item that indicates whether the charge is a fee or credit.
*
*
* @param type
* The type of the custom line item that indicates whether the charge is a fee or credit.
* @see CustomLineItemType
*/
public void setType(String type) {
this.type = type;
}
/**
*
* The type of the custom line item that indicates whether the charge is a fee or credit.
*
*
* @return The type of the custom line item that indicates whether the charge is a fee or credit.
* @see CustomLineItemType
*/
public String getType() {
return this.type;
}
/**
*
* The type of the custom line item that indicates whether the charge is a fee or credit.
*
*
* @param type
* The type of the custom line item that indicates whether the charge is a fee or credit.
* @return Returns a reference to this object so that method calls can be chained together.
* @see CustomLineItemType
*/
public CustomLineItemChargeDetails withType(String type) {
setType(type);
return this;
}
/**
*
* The type of the custom line item that indicates whether the charge is a fee or credit.
*
*
* @param type
* The type of the custom line item that indicates whether the charge is a fee or credit.
* @return Returns a reference to this object so that method calls can be chained together.
* @see CustomLineItemType
*/
public CustomLineItemChargeDetails withType(CustomLineItemType type) {
this.type = type.toString();
return this;
}
/**
*
* A representation of the line item filter.
*
*
* @return A representation of the line item filter.
*/
public java.util.List getLineItemFilters() {
return lineItemFilters;
}
/**
*
* A representation of the line item filter.
*
*
* @param lineItemFilters
* A representation of the line item filter.
*/
public void setLineItemFilters(java.util.Collection lineItemFilters) {
if (lineItemFilters == null) {
this.lineItemFilters = null;
return;
}
this.lineItemFilters = new java.util.ArrayList(lineItemFilters);
}
/**
*
* A representation of the line item filter.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setLineItemFilters(java.util.Collection)} or {@link #withLineItemFilters(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param lineItemFilters
* A representation of the line item filter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomLineItemChargeDetails withLineItemFilters(LineItemFilter... lineItemFilters) {
if (this.lineItemFilters == null) {
setLineItemFilters(new java.util.ArrayList(lineItemFilters.length));
}
for (LineItemFilter ele : lineItemFilters) {
this.lineItemFilters.add(ele);
}
return this;
}
/**
*
* A representation of the line item filter.
*
*
* @param lineItemFilters
* A representation of the line item filter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CustomLineItemChargeDetails withLineItemFilters(java.util.Collection lineItemFilters) {
setLineItemFilters(lineItemFilters);
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 (getFlat() != null)
sb.append("Flat: ").append(getFlat()).append(",");
if (getPercentage() != null)
sb.append("Percentage: ").append(getPercentage()).append(",");
if (getType() != null)
sb.append("Type: ").append(getType()).append(",");
if (getLineItemFilters() != null)
sb.append("LineItemFilters: ").append(getLineItemFilters());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CustomLineItemChargeDetails == false)
return false;
CustomLineItemChargeDetails other = (CustomLineItemChargeDetails) obj;
if (other.getFlat() == null ^ this.getFlat() == null)
return false;
if (other.getFlat() != null && other.getFlat().equals(this.getFlat()) == false)
return false;
if (other.getPercentage() == null ^ this.getPercentage() == null)
return false;
if (other.getPercentage() != null && other.getPercentage().equals(this.getPercentage()) == false)
return false;
if (other.getType() == null ^ this.getType() == null)
return false;
if (other.getType() != null && other.getType().equals(this.getType()) == false)
return false;
if (other.getLineItemFilters() == null ^ this.getLineItemFilters() == null)
return false;
if (other.getLineItemFilters() != null && other.getLineItemFilters().equals(this.getLineItemFilters()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFlat() == null) ? 0 : getFlat().hashCode());
hashCode = prime * hashCode + ((getPercentage() == null) ? 0 : getPercentage().hashCode());
hashCode = prime * hashCode + ((getType() == null) ? 0 : getType().hashCode());
hashCode = prime * hashCode + ((getLineItemFilters() == null) ? 0 : getLineItemFilters().hashCode());
return hashCode;
}
@Override
public CustomLineItemChargeDetails clone() {
try {
return (CustomLineItemChargeDetails) 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.billingconductor.model.transform.CustomLineItemChargeDetailsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}