package gatewayprotocol.v1; import com.google.protobuf.kotlin.DslList; import com.google.protobuf.kotlin.DslProxy; import com.google.protobuf.kotlin.ProtoDslMarker; import gatewayprotocol.v1.DeveloperConsentOuterClass; import java.util.List; import kotlin.jvm.internal.DefaultConstructorMarker; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes5.dex */ public final class DeveloperConsentKt { public static final DeveloperConsentKt INSTANCE = new DeveloperConsentKt(); @ProtoDslMarker public static final class Dsl { public static final Companion Companion = new Companion(null); private final DeveloperConsentOuterClass.DeveloperConsent.Builder _builder; public /* synthetic */ Dsl(DeveloperConsentOuterClass.DeveloperConsent.Builder builder, DefaultConstructorMarker defaultConstructorMarker) { this(builder); } private Dsl(DeveloperConsentOuterClass.DeveloperConsent.Builder builder) { this._builder = builder; } public static final class Companion { public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) { this(); } private Companion() { } public final /* synthetic */ Dsl _create(DeveloperConsentOuterClass.DeveloperConsent.Builder builder) { Intrinsics.checkNotNullParameter(builder, "builder"); return new Dsl(builder, null); } } public final /* synthetic */ DeveloperConsentOuterClass.DeveloperConsent _build() { DeveloperConsentOuterClass.DeveloperConsent build = this._builder.build(); Intrinsics.checkNotNullExpressionValue(build, "_builder.build()"); return build; } public static final class OptionsProxy extends DslProxy { private OptionsProxy() { } } public final /* synthetic */ DslList getOptions() { List optionsList = this._builder.getOptionsList(); Intrinsics.checkNotNullExpressionValue(optionsList, "_builder.getOptionsList()"); return new DslList(optionsList); } public final /* synthetic */ void addOptions(DslList dslList, DeveloperConsentOuterClass.DeveloperConsentOption value) { Intrinsics.checkNotNullParameter(dslList, ""); Intrinsics.checkNotNullParameter(value, "value"); this._builder.addOptions(value); } public final /* synthetic */ void plusAssignOptions(DslList dslList, DeveloperConsentOuterClass.DeveloperConsentOption value) { Intrinsics.checkNotNullParameter(dslList, ""); Intrinsics.checkNotNullParameter(value, "value"); addOptions(dslList, value); } public final /* synthetic */ void addAllOptions(DslList dslList, Iterable values) { Intrinsics.checkNotNullParameter(dslList, ""); Intrinsics.checkNotNullParameter(values, "values"); this._builder.addAllOptions(values); } public final /* synthetic */ void plusAssignAllOptions(DslList dslList, Iterable values) { Intrinsics.checkNotNullParameter(dslList, ""); Intrinsics.checkNotNullParameter(values, "values"); addAllOptions(dslList, values); } public final /* synthetic */ void setOptions(DslList dslList, int i, DeveloperConsentOuterClass.DeveloperConsentOption value) { Intrinsics.checkNotNullParameter(dslList, ""); Intrinsics.checkNotNullParameter(value, "value"); this._builder.setOptions(i, value); } public final /* synthetic */ void clearOptions(DslList dslList) { Intrinsics.checkNotNullParameter(dslList, ""); this._builder.clearOptions(); } } private DeveloperConsentKt() { } }