Afterpay's Target Market Determinations.
What is a Target Market Determination?
Why does Afterpay need to have Target Market Determinations?
A Target Market Determination is a key part of a regulatory framework called the Design and Distribution Obligations. These obligations apply to most consumer financial services, including Buy Now Pay Later products.
The Australian Securities and Investments Commission (ASIC) is the regulator that is responsible for overseeing the Design and Distribution Obligations. You can find out more on ASIC’s website.
Afterpay supports this important outcomes-focused regulatory framework.
const calcCollapseContentHeight = (section) => { const content = section.querySelector(".question-content"); const contentHeight = content.getBoundingClientRect().height; section .querySelector(".question-des") .style.setProperty("--max-height", `${contentHeight + 10}px`); }; setTimeout(() => { const collapseElems = document.querySelectorAll(".question-item"); for (const collapse of collapseElems) { const observer = new ResizeObserver(() => calcCollapseContentHeight(collapse) ); observer.observe(collapse); } }, 500);