- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
34 lines
2.0 KiB
Java
34 lines
2.0 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import gatewayprotocol.v1.GetTokenEventRequestKt;
|
|
import gatewayprotocol.v1.GetTokenEventRequestOuterClass;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
|
|
@SourceDebugExtension({"SMAP\nGetTokenEventRequestKt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 GetTokenEventRequestKt.kt\ngatewayprotocol/v1/GetTokenEventRequestKtKt\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,162:1\n1#2:163\n*E\n"})
|
|
/* loaded from: classes5.dex */
|
|
public final class GetTokenEventRequestKtKt {
|
|
/* renamed from: -initializegetTokenEventRequest, reason: not valid java name */
|
|
public static final GetTokenEventRequestOuterClass.GetTokenEventRequest m4022initializegetTokenEventRequest(Function1 block) {
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
GetTokenEventRequestKt.Dsl.Companion companion = GetTokenEventRequestKt.Dsl.Companion;
|
|
GetTokenEventRequestOuterClass.GetTokenEventRequest.Builder newBuilder = GetTokenEventRequestOuterClass.GetTokenEventRequest.newBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(newBuilder, "newBuilder()");
|
|
GetTokenEventRequestKt.Dsl _create = companion._create(newBuilder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
|
|
public static final GetTokenEventRequestOuterClass.GetTokenEventRequest copy(GetTokenEventRequestOuterClass.GetTokenEventRequest getTokenEventRequest, Function1 block) {
|
|
Intrinsics.checkNotNullParameter(getTokenEventRequest, "<this>");
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
GetTokenEventRequestKt.Dsl.Companion companion = GetTokenEventRequestKt.Dsl.Companion;
|
|
GetTokenEventRequestOuterClass.GetTokenEventRequest.Builder builder = getTokenEventRequest.toBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(builder, "this.toBuilder()");
|
|
GetTokenEventRequestKt.Dsl _create = companion._create(builder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
}
|