Untitled

mail@pastecode.io avatar
unknown
plain_text
19 days ago
732 B
2
Indexable
Never
quick.Quick.host.trigger(dataItem.consentInfo, {}).then(response => {
    let plt = quick.Quick.platform.getPlatformType();
    let btxCustomData;
    switch (plt) {
        case "iOS":
            btxCustomData = response.retVal["funcRetVal"].customerDemandAccountList;
            quick.EM.trace("iban list");
            quick.EM.trace(btxCustomData);
            quick.getComponent('consentData_attrcustomerDemandAccountList0').text = JSON.stringify(btxCustomData);
            break;
        default:
            btxCustomData = response.retVal["funcRetVal"].bitexenInfos.customerDemandAccountList;
            quick.getComponent('consentData_attrcustomerDemandAccountList0').text = btxCustomData;
            break;
    };

})
Leave a Comment