com.ovhcloud.pulumi.ovh.Order.outputs.GetCartProductPlanPricePrice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.ovhcloud.pulumi.ovh.Order.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetCartProductPlanPricePrice {
/**
* @return Currency code
*
*/
private String currencyCode;
/**
* @return Textual representation
*
*/
private String text;
/**
* @return The effective price
*
*/
private Double value;
private GetCartProductPlanPricePrice() {}
/**
* @return Currency code
*
*/
public String currencyCode() {
return this.currencyCode;
}
/**
* @return Textual representation
*
*/
public String text() {
return this.text;
}
/**
* @return The effective price
*
*/
public Double value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCartProductPlanPricePrice defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String currencyCode;
private String text;
private Double value;
public Builder() {}
public Builder(GetCartProductPlanPricePrice defaults) {
Objects.requireNonNull(defaults);
this.currencyCode = defaults.currencyCode;
this.text = defaults.text;
this.value = defaults.value;
}
@CustomType.Setter
public Builder currencyCode(String currencyCode) {
if (currencyCode == null) {
throw new MissingRequiredPropertyException("GetCartProductPlanPricePrice", "currencyCode");
}
this.currencyCode = currencyCode;
return this;
}
@CustomType.Setter
public Builder text(String text) {
if (text == null) {
throw new MissingRequiredPropertyException("GetCartProductPlanPricePrice", "text");
}
this.text = text;
return this;
}
@CustomType.Setter
public Builder value(Double value) {
if (value == null) {
throw new MissingRequiredPropertyException("GetCartProductPlanPricePrice", "value");
}
this.value = value;
return this;
}
public GetCartProductPlanPricePrice build() {
final var _resultValue = new GetCartProductPlanPricePrice();
_resultValue.currencyCode = currencyCode;
_resultValue.text = text;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy