where do config values come from?
usually in configs you have smth like this: . where you specify from where the value comes from. in this screenshot it comes from application.yaml file. but idk where it comes from in my BankAccountConfig?:

@Component
@Getter
@Setter
@ConfigurationProperties(prefix="payment-import")
public class BankAccountConfig {
private List<BankAccount> bankAccounts;
}