我有一个kotlin类 VouchersResponse.kt

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
    )

在Java类中,我无法导入VouchersResponse
public class HomePageBannerRepository {
    private Observable<VouchersResponse> movieDBResponseObservable;
}

我能做什么:我能够在另一个kotlin类中导入kotlin数据类

问题:如何在Java类中导入kotlin数据类

最佳答案

使用包名称导入类:

import com.my.package.MyClass

10-06 03:31