if (storeSubscriptionlevelList != null) {
List<Map<String,Object>> storeSubscriptionLevelCodeList = FastList.newInstance();
int i = 0;
while (i < storeSubscriptionlevelList.length) {
Map<String,Object> storeSubscriptionLevelCodeMap = FastMap.newInstance();
StoreSubscriptionLevelCodeType storeSubscriptionLevelCode= storeSubscriptionlevelList[i];
storeSubscriptionLevelCodeMap.put("storeSubscriptionLevelCodeName", storeSubscriptionLevelCode.name());
storeSubscriptionLevelCodeMap.put("storeSubscriptionLevelCodeValue", storeSubscriptionLevelCode.value());
storeSubscriptionLevelCodeList.add(storeSubscriptionLevelCodeMap);
i++;
}
ebayResp.put("storeSubscriptionLevelList", storeSubscriptionLevelCodeList);
}