Interface AddressRepository
-
- All Implemented Interfaces:
@RestrictTo(value = {RestrictTo.Scope.LIBRARY_GROUP}) public interface AddressRepository
-
-
Method Summary
Modifier and Type Method Description abstract UnitgetStateList(Locale shopperLocale, String countryCode, CoroutineScope coroutineScope)abstract UnitgetCountryList(Locale shopperLocale, CoroutineScope coroutineScope)abstract Flow<List<AddressItem>>getStatesFlow()abstract Flow<List<AddressItem>>getCountriesFlow()-
-
Method Detail
-
getStateList
abstract Unit getStateList(Locale shopperLocale, String countryCode, CoroutineScope coroutineScope)
-
getCountryList
abstract Unit getCountryList(Locale shopperLocale, CoroutineScope coroutineScope)
-
getStatesFlow
abstract Flow<List<AddressItem>> getStatesFlow()
-
getCountriesFlow
abstract Flow<List<AddressItem>> getCountriesFlow()
-
-
-
-