Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKCountryCode.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public class ZoomSDKCountryCode {
7
8 private String id;
9 private String name;
10 private String code;
11 private String number;
12
21 public ZoomSDKCountryCode(String id, String name, String code, String number) {
22 this.id = id;
23 this.name = name;
24 this.code = code;
25 this.number = number;
26 }
27
33 public String getId() {
34 return id;
35 }
36
42 public String getName() {
43 return name;
44 }
45
51 public String getCode() {
52 return code;
53 }
54
60 public String getNumber() {
61 return number;
62 }
63}
ZoomSDKCountryCode(String id, String name, String code, String number)
Constructs a ZoomSDKCountryCode instance.
String getNumber()
Gets the phone number.
String getName()
Gets the country name.
String getCode()
Gets the country code.
String getId()
Gets the country ID.