Skip to content

Commit 2e17559

Browse files
author
Carlos Diaz-Padron
committed
Add documentation for getObject()
1 parent 286b627 commit 2e17559

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/twilio/sdk/resource/InstanceResource.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ public String getProperty(String name) {
7575
+ " is an object. Use getObject() instead.");
7676
}
7777

78+
/**
79+
* Gets the property as an Object.
80+
*
81+
* @param name the name of the property
82+
* @return the property as an Object
83+
*/
7884
public Object getObject(String name) {
7985
Object prop = getAndLoadIfNecessary(name);
8086

0 commit comments

Comments
 (0)