41 lines
2.2 KiB
Java
41 lines
2.2 KiB
Java
|
package com.scb.phone.view.custom.closeaccount;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import com.scb.phone.view.custom.common.CustomAmountRow;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class AccountAmountCustomComponent_ViewBinding implements Unbinder {
|
||
|
private AccountAmountCustomComponent d;
|
||
|
|
||
|
public AccountAmountCustomComponent_ViewBinding(AccountAmountCustomComponent accountAmountCustomComponent, View view) {
|
||
|
this.d = accountAmountCustomComponent;
|
||
|
accountAmountCustomComponent.amount = (CustomAmountRow) pyT.e(view, R.id.amount_row, "field 'amount'", CustomAmountRow.class);
|
||
|
accountAmountCustomComponent.interest = (CustomAmountRow) pyT.e(view, R.id.interest_row, "field 'interest'", CustomAmountRow.class);
|
||
|
accountAmountCustomComponent.tax = (CustomAmountRow) pyT.e(view, R.id.tax_row, "field 'tax'", CustomAmountRow.class);
|
||
|
accountAmountCustomComponent.closingFee = (CustomAmountRow) pyT.e(view, R.id.closing_fee_row, "field 'closingFee'", CustomAmountRow.class);
|
||
|
accountAmountCustomComponent.fee = (CustomAmountRow) pyT.e(view, R.id.fee_row, "field 'fee'", CustomAmountRow.class);
|
||
|
accountAmountCustomComponent.netAmount = (TextView) pyT.e(view, R.id.tv_net_amount, "field 'netAmount'", TextView.class);
|
||
|
accountAmountCustomComponent.netAmountButton = (TextView) pyT.e(view, R.id.tv_net_amount_button, "field 'netAmountButton'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
AccountAmountCustomComponent accountAmountCustomComponent = this.d;
|
||
|
if (accountAmountCustomComponent == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.d = null;
|
||
|
accountAmountCustomComponent.amount = null;
|
||
|
accountAmountCustomComponent.interest = null;
|
||
|
accountAmountCustomComponent.tax = null;
|
||
|
accountAmountCustomComponent.closingFee = null;
|
||
|
accountAmountCustomComponent.fee = null;
|
||
|
accountAmountCustomComponent.netAmount = null;
|
||
|
accountAmountCustomComponent.netAmountButton = null;
|
||
|
}
|
||
|
}
|