
com.pulumi.azurenative.media.outputs.LiveEventTrackEventResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.pulumi.azurenative.media.outputs;
import com.pulumi.azurenative.media.outputs.LiveEventTrackEventDataResponse;
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 LiveEventTrackEventResponse {
/**
* @return Event data.
*
*/
private @Nullable LiveEventTrackEventDataResponse data;
/**
* @return The time event raised.
*
*/
private @Nullable String eventTime;
/**
* @return The type of the track event.
*
*/
private @Nullable String eventType;
private LiveEventTrackEventResponse() {}
/**
* @return Event data.
*
*/
public Optional data() {
return Optional.ofNullable(this.data);
}
/**
* @return The time event raised.
*
*/
public Optional eventTime() {
return Optional.ofNullable(this.eventTime);
}
/**
* @return The type of the track event.
*
*/
public Optional eventType() {
return Optional.ofNullable(this.eventType);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LiveEventTrackEventResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable LiveEventTrackEventDataResponse data;
private @Nullable String eventTime;
private @Nullable String eventType;
public Builder() {}
public Builder(LiveEventTrackEventResponse defaults) {
Objects.requireNonNull(defaults);
this.data = defaults.data;
this.eventTime = defaults.eventTime;
this.eventType = defaults.eventType;
}
@CustomType.Setter
public Builder data(@Nullable LiveEventTrackEventDataResponse data) {
this.data = data;
return this;
}
@CustomType.Setter
public Builder eventTime(@Nullable String eventTime) {
this.eventTime = eventTime;
return this;
}
@CustomType.Setter
public Builder eventType(@Nullable String eventType) {
this.eventType = eventType;
return this;
}
public LiveEventTrackEventResponse build() {
final var _resultValue = new LiveEventTrackEventResponse();
_resultValue.data = data;
_resultValue.eventTime = eventTime;
_resultValue.eventType = eventType;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy