Files
rr3-apk/decompiled-community/sources/gatewayprotocol/v1/DeveloperConsentOptionKt.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

98 lines
3.5 KiB
Java

package gatewayprotocol.v1;
import com.google.protobuf.kotlin.ProtoDslMarker;
import gatewayprotocol.v1.DeveloperConsentOuterClass;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes5.dex */
public final class DeveloperConsentOptionKt {
public static final DeveloperConsentOptionKt INSTANCE = new DeveloperConsentOptionKt();
@ProtoDslMarker
public static final class Dsl {
public static final Companion Companion = new Companion(null);
private final DeveloperConsentOuterClass.DeveloperConsentOption.Builder _builder;
public /* synthetic */ Dsl(DeveloperConsentOuterClass.DeveloperConsentOption.Builder builder, DefaultConstructorMarker defaultConstructorMarker) {
this(builder);
}
private Dsl(DeveloperConsentOuterClass.DeveloperConsentOption.Builder builder) {
this._builder = builder;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final /* synthetic */ Dsl _create(DeveloperConsentOuterClass.DeveloperConsentOption.Builder builder) {
Intrinsics.checkNotNullParameter(builder, "builder");
return new Dsl(builder, null);
}
}
public final /* synthetic */ DeveloperConsentOuterClass.DeveloperConsentOption _build() {
DeveloperConsentOuterClass.DeveloperConsentOption build = this._builder.build();
Intrinsics.checkNotNullExpressionValue(build, "_builder.build()");
return build;
}
public final DeveloperConsentOuterClass.DeveloperConsentType getType() {
DeveloperConsentOuterClass.DeveloperConsentType type = this._builder.getType();
Intrinsics.checkNotNullExpressionValue(type, "_builder.getType()");
return type;
}
public final void setType(DeveloperConsentOuterClass.DeveloperConsentType value) {
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setType(value);
}
public final void clearType() {
this._builder.clearType();
}
public final String getCustomType() {
String customType = this._builder.getCustomType();
Intrinsics.checkNotNullExpressionValue(customType, "_builder.getCustomType()");
return customType;
}
public final void setCustomType(String value) {
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setCustomType(value);
}
public final void clearCustomType() {
this._builder.clearCustomType();
}
public final boolean hasCustomType() {
return this._builder.hasCustomType();
}
public final DeveloperConsentOuterClass.DeveloperConsentChoice getValue() {
DeveloperConsentOuterClass.DeveloperConsentChoice value = this._builder.getValue();
Intrinsics.checkNotNullExpressionValue(value, "_builder.getValue()");
return value;
}
public final void setValue(DeveloperConsentOuterClass.DeveloperConsentChoice value) {
Intrinsics.checkNotNullParameter(value, "value");
this._builder.setValue(value);
}
public final void clearValue() {
this._builder.clearValue();
}
}
private DeveloperConsentOptionKt() {
}
}