我有一个科特琳课程 VouchersResponse.kt
args
在Java类中,我无法导入import com.google.gson.annotations.SerializedName
data class VouchersResponse (
@SerializedName("genotp") val genotp : Genotp,
@SerializedName("exp") val exp : Exp,
@SerializedName("otpvalidate") val otpvalidate : Otpvalidate,
@SerializedName("status") val status : Status
)
VouchersResponse
我能做什么:我能够将kotlin数据类导入另一个kotlin类中
问题:如何在Java类中导入public class HomePageBannerRepository {
private Observable<VouchersResponse> movieDBResponseObservable;
}
数据类
答案 0 :(得分:1)
使用包名称导入该类:
import com.my.package.MyClass