Advertisement
dkob

test_respones_api_countries

Mar 5th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1.  
  2. 1: Два одинаковых name у стран
  3. Результат:
  4. "phone_prefixes": [
  5. "+1-876",
  6. "+1-658"
  7. ],
  8. "phone_format": {
  9. "+1-876": "---- ----",
  10. "+1-658": "--- ----"
  11. },
  12. "countries": [
  13. {
  14. "name": "Jamaica",
  15. "flag_url": "",
  16. "phone_prefix": "+1-876",
  17. "phone_format": "---- ----"
  18. },
  19. {
  20. "name": "Jamaica",
  21. "flag_url": "",
  22. "phone_prefix": "+1-658",
  23. "phone_format": "--- ----"
  24. }
  25. ],
  26.  
  27. 2: два страны с одинаковыми префиксами
  28. Результат:
  29. "phone_prefixes": [
  30. "+7",
  31. "+7"
  32. ],
  33. "phone_format": {
  34. "+7": "---- ----"
  35. },
  36. "countries": [
  37. {
  38. "name": "Kazakhstan",
  39. "flag_url": "",
  40. "phone_prefix": "+7",
  41. "phone_format": "---- ---"
  42. },
  43. {
  44. "name": "Russia",
  45. "flag_url": "",
  46. "phone_prefix": "+7",
  47. "phone_format": "---- ----"
  48. }
  49. ],
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement