
com.pulumi.azurenative.billing.outputs.BillingProfilePropertiesResponseIndirectRelationshipInfo Maven / Gradle / Ivy
// *** 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.pulumi.azurenative.billing.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class BillingProfilePropertiesResponseIndirectRelationshipInfo {
/**
* @return The billing account name of the partner or the customer for an indirect motion.
*
*/
private @Nullable String billingAccountName;
/**
* @return The billing profile name of the partner or the customer for an indirect motion.
*
*/
private @Nullable String billingProfileName;
/**
* @return The display name of the partner or customer for an indirect motion.
*
*/
private @Nullable String displayName;
private BillingProfilePropertiesResponseIndirectRelationshipInfo() {}
/**
* @return The billing account name of the partner or the customer for an indirect motion.
*
*/
public Optional billingAccountName() {
return Optional.ofNullable(this.billingAccountName);
}
/**
* @return The billing profile name of the partner or the customer for an indirect motion.
*
*/
public Optional billingProfileName() {
return Optional.ofNullable(this.billingProfileName);
}
/**
* @return The display name of the partner or customer for an indirect motion.
*
*/
public Optional displayName() {
return Optional.ofNullable(this.displayName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(BillingProfilePropertiesResponseIndirectRelationshipInfo defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String billingAccountName;
private @Nullable String billingProfileName;
private @Nullable String displayName;
public Builder() {}
public Builder(BillingProfilePropertiesResponseIndirectRelationshipInfo defaults) {
Objects.requireNonNull(defaults);
this.billingAccountName = defaults.billingAccountName;
this.billingProfileName = defaults.billingProfileName;
this.displayName = defaults.displayName;
}
@CustomType.Setter
public Builder billingAccountName(@Nullable String billingAccountName) {
this.billingAccountName = billingAccountName;
return this;
}
@CustomType.Setter
public Builder billingProfileName(@Nullable String billingProfileName) {
this.billingProfileName = billingProfileName;
return this;
}
@CustomType.Setter
public Builder displayName(@Nullable String displayName) {
this.displayName = displayName;
return this;
}
public BillingProfilePropertiesResponseIndirectRelationshipInfo build() {
final var _resultValue = new BillingProfilePropertiesResponseIndirectRelationshipInfo();
_resultValue.billingAccountName = billingAccountName;
_resultValue.billingProfileName = billingProfileName;
_resultValue.displayName = displayName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy