Merge branch 'development' of github.cmd.navi-tech.in:medici/android-customer-app into feature/hl-sms-permission

This commit is contained in:
hitesh
2022-06-01 18:36:11 +05:30

View File

@@ -33,7 +33,7 @@ data class CoApplicantNudgeBottomSheetData(
@SerializedName("iconCode") val iconCode: String? = null,
@SerializedName("title") val title: String? = null,
@SerializedName("infoList") val infoList: ArrayList<String>? = null,
@SerializedName("addCoApplicantResponse") val addCoApplicantResponse: @RawValue HomeLoanAddCoApplicantResponse? = null,
@SerializedName("addCoApplicantResponse") val addCoApplicantResponse: HomeLoanAddCoApplicantResponse? = null,
@SerializedName("ctaList") val ctaList: List<CtaData>? = null
) : Parcelable
@@ -103,6 +103,7 @@ data class HomeLoanSanctionLetterResponse(
@SerializedName("slDetails") val slDetails: SanctionLetterDetails? = null
) : HomeLoanSubStepResponse()
@Parcelize
data class HomeLoanAddCoApplicantResponse(
@SerializedName("title") val title: String? = null,
@SerializedName("infoList") val infoList: ArrayList<String>? = null,
@@ -110,7 +111,7 @@ data class HomeLoanAddCoApplicantResponse(
@SerializedName("cta") val cta: CtaData? = null,
@SerializedName("inactiveCoApplicants")
val inactiveCoApplicants: ArrayList<HomeLoanCoApplicantResponse>? = null
) : HomeLoanSubStepResponse()
) : HomeLoanSubStepResponse(), Parcelable
data class HomeLoanTitleResponse(
@SerializedName("styledTitle") val styledTitle: StyledTextWithIconCode? = null,
@@ -155,12 +156,13 @@ data class HomeLoanStep(
@SerializedName("bottomSheetData") val bottomSheetData: BottomSheetData? = null
)
@Parcelize
data class HomeLoanOfferGreetingData(
@SerializedName("label") val label: String? = null,
@SerializedName("title") val title: String? = null,
@SerializedName("subtitle") val subtitle: String? = null,
@SerializedName("showAnimation") val showAnimation: Boolean? = null
)
) : Parcelable
data class HomeLoanGenericCardResponse(
@SerializedName("title") val title: String? = null,