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

com.amazonaws.services.billingconductor.model.UpdateCustomLineItemChargeDetails Maven / Gradle / Ivy

Go to download

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

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

/**
 * 

* A representation of the new charge details of a custom line item. This should contain only one of Flat * or Percentage. *

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

* An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat custom line * item. *

*/ private UpdateCustomLineItemFlatChargeDetails flat; /** *

* An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a percentage * custom line item. *

*/ private UpdateCustomLineItemPercentageChargeDetails percentage; /** *

* A representation of the line item filter. *

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

* An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat custom line * item. *

* * @param flat * An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat * custom line item. */ public void setFlat(UpdateCustomLineItemFlatChargeDetails flat) { this.flat = flat; } /** *

* An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat custom line * item. *

* * @return An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat * custom line item. */ public UpdateCustomLineItemFlatChargeDetails getFlat() { return this.flat; } /** *

* An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat custom line * item. *

* * @param flat * An UpdateCustomLineItemFlatChargeDetails that describes the new charge details of a flat * custom line item. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateCustomLineItemChargeDetails withFlat(UpdateCustomLineItemFlatChargeDetails flat) { setFlat(flat); return this; } /** *

* An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a percentage * custom line item. *

* * @param percentage * An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a * percentage custom line item. */ public void setPercentage(UpdateCustomLineItemPercentageChargeDetails percentage) { this.percentage = percentage; } /** *

* An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a percentage * custom line item. *

* * @return An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a * percentage custom line item. */ public UpdateCustomLineItemPercentageChargeDetails getPercentage() { return this.percentage; } /** *

* An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a percentage * custom line item. *

* * @param percentage * An UpdateCustomLineItemPercentageChargeDetails that describes the new charge details of a * percentage custom line item. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateCustomLineItemChargeDetails withPercentage(UpdateCustomLineItemPercentageChargeDetails percentage) { setPercentage(percentage); 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 UpdateCustomLineItemChargeDetails 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 UpdateCustomLineItemChargeDetails 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 (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 UpdateCustomLineItemChargeDetails == false) return false; UpdateCustomLineItemChargeDetails other = (UpdateCustomLineItemChargeDetails) 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.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 + ((getLineItemFilters() == null) ? 0 : getLineItemFilters().hashCode()); return hashCode; } @Override public UpdateCustomLineItemChargeDetails clone() { try { return (UpdateCustomLineItemChargeDetails) 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.UpdateCustomLineItemChargeDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy