Settings

fetchCountries function:

parameters:

return: promise

zid.store.settings.fetchCountries()then(function (response) {
		
})

fetchCitiesOfCountry function:

parameters:

countryId

return: promise

zid.store.settings.fetchCitiesOfCountry(countryId).then(function (response) {
	
})

fetchTermsAndCondition function:

parameters:

return: promise

zid.store.settings.fetchTermsAndCondition().then(function (response) {
	
})

fetchPrivacyPolicy function:

parameters:

return: promise

zid.store.settings.fetchPrivacyPolicy().then(function (response) {
	
})

Last updated

Was this helpful?