49 lines
1.2 KiB
Java
49 lines
1.2 KiB
Java
|
package io.beid.beidk.messages.transaction;
|
||
|
|
||
|
import o.InterfaceC16620pkx;
|
||
|
import o.uEw;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class TransactionBeginForm extends uEw {
|
||
|
|
||
|
@InterfaceC16620pkx
|
||
|
public String applicationName;
|
||
|
|
||
|
@InterfaceC16620pkx
|
||
|
public String deviceId;
|
||
|
|
||
|
@InterfaceC16620pkx
|
||
|
public String platformId;
|
||
|
|
||
|
@InterfaceC16620pkx
|
||
|
public String sdkVersion;
|
||
|
|
||
|
public TransactionBeginForm setSdkVersion(String str) {
|
||
|
this.sdkVersion = str;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public TransactionBeginForm setPlatformId(String str) {
|
||
|
this.platformId = str;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public TransactionBeginForm setDeviceId(String str) {
|
||
|
this.deviceId = str;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public TransactionBeginForm setApplicationName(String str) {
|
||
|
this.applicationName = str;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public TransactionBeginForm(TransactionBeginForm transactionBeginForm) {
|
||
|
setDeviceId(transactionBeginForm.deviceId).setPlatformId(transactionBeginForm.platformId).setSdkVersion(transactionBeginForm.sdkVersion).setApplicationName(transactionBeginForm.applicationName);
|
||
|
}
|
||
|
|
||
|
public TransactionBeginForm() {
|
||
|
this.sdkVersion = "n/a";
|
||
|
}
|
||
|
}
|