44 lines
2.5 KiB
Java
44 lines
2.5 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.Button;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class CustomInstallmentBillsToPay_ViewBinding implements Unbinder {
|
||
|
private CustomInstallmentBillsToPay e;
|
||
|
|
||
|
public CustomInstallmentBillsToPay_ViewBinding(CustomInstallmentBillsToPay customInstallmentBillsToPay, View view) {
|
||
|
this.e = customInstallmentBillsToPay;
|
||
|
customInstallmentBillsToPay.mIconImageView = (ImageView) pyT.e(view, R.id.ivIcon, "field 'mIconImageView'", ImageView.class);
|
||
|
customInstallmentBillsToPay.mAmountTitleTextView = (TextView) pyT.e(view, R.id.tvAmountTitle, "field 'mAmountTitleTextView'", TextView.class);
|
||
|
customInstallmentBillsToPay.mAmountValueTextView = (TextView) pyT.e(view, R.id.tvAmountValue, "field 'mAmountValueTextView'", TextView.class);
|
||
|
customInstallmentBillsToPay.mMinimumPaymentValueTextView = (TextView) pyT.e(view, R.id.tvMinimumPaymentValue, "field 'mMinimumPaymentValueTextView'", TextView.class);
|
||
|
customInstallmentBillsToPay.mStatementDateValueTextView = (TextView) pyT.e(view, R.id.tvStatementDateValue, "field 'mStatementDateValueTextView'", TextView.class);
|
||
|
customInstallmentBillsToPay.mDueDateValueTextView = (TextView) pyT.e(view, R.id.tvDueDateValue, "field 'mDueDateValueTextView'", TextView.class);
|
||
|
customInstallmentBillsToPay.mPayButton = (Button) pyT.e(view, R.id.buttonPay, "field 'mPayButton'", Button.class);
|
||
|
customInstallmentBillsToPay.mInstallmentButton = (Button) pyT.e(view, R.id.buttonInstallment, "field 'mInstallmentButton'", Button.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomInstallmentBillsToPay customInstallmentBillsToPay = this.e;
|
||
|
if (customInstallmentBillsToPay == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
customInstallmentBillsToPay.mIconImageView = null;
|
||
|
customInstallmentBillsToPay.mAmountTitleTextView = null;
|
||
|
customInstallmentBillsToPay.mAmountValueTextView = null;
|
||
|
customInstallmentBillsToPay.mMinimumPaymentValueTextView = null;
|
||
|
customInstallmentBillsToPay.mStatementDateValueTextView = null;
|
||
|
customInstallmentBillsToPay.mDueDateValueTextView = null;
|
||
|
customInstallmentBillsToPay.mPayButton = null;
|
||
|
customInstallmentBillsToPay.mInstallmentButton = null;
|
||
|
}
|
||
|
}
|