Class: Bskyrb::ComAtprotoAdminDefs::RepoViewDetail
- Inherits:
-
Object
- Object
- Bskyrb::ComAtprotoAdminDefs::RepoViewDetail
- Defined in:
- lib/bskyrb/generated_classes.rb
Instance Attribute Summary collapse
-
#did ⇒ Object
Returns the value of attribute did.
-
#email ⇒ Object
Returns the value of attribute email.
-
#handle ⇒ Object
Returns the value of attribute handle.
-
#indexedAt ⇒ Object
Returns the value of attribute indexedAt.
-
#invitedBy ⇒ Object
Returns the value of attribute invitedBy.
-
#invites ⇒ Object
Returns the value of attribute invites.
-
#invitesDisabled ⇒ Object
Returns the value of attribute invitesDisabled.
-
#labels ⇒ Object
Returns the value of attribute labels.
-
#moderation ⇒ Object
Returns the value of attribute moderation.
-
#relatedRecords ⇒ Object
Returns the value of attribute relatedRecords.
Class Method Summary collapse
Instance Attribute Details
#did ⇒ Object
Returns the value of attribute did.
1275 1276 1277 |
# File 'lib/bskyrb/generated_classes.rb', line 1275 def did @did end |
#email ⇒ Object
Returns the value of attribute email.
1279 1280 1281 |
# File 'lib/bskyrb/generated_classes.rb', line 1279 def email @email end |
#handle ⇒ Object
Returns the value of attribute handle.
1277 1278 1279 |
# File 'lib/bskyrb/generated_classes.rb', line 1277 def handle @handle end |
#indexedAt ⇒ Object
Returns the value of attribute indexedAt.
1283 1284 1285 |
# File 'lib/bskyrb/generated_classes.rb', line 1283 def indexedAt @indexedAt end |
#invitedBy ⇒ Object
Returns the value of attribute invitedBy.
1289 1290 1291 |
# File 'lib/bskyrb/generated_classes.rb', line 1289 def invitedBy @invitedBy end |
#invites ⇒ Object
Returns the value of attribute invites.
1291 1292 1293 |
# File 'lib/bskyrb/generated_classes.rb', line 1291 def invites @invites end |
#invitesDisabled ⇒ Object
Returns the value of attribute invitesDisabled.
1293 1294 1295 |
# File 'lib/bskyrb/generated_classes.rb', line 1293 def invitesDisabled @invitesDisabled end |
#labels ⇒ Object
Returns the value of attribute labels.
1287 1288 1289 |
# File 'lib/bskyrb/generated_classes.rb', line 1287 def labels @labels end |
#moderation ⇒ Object
Returns the value of attribute moderation.
1285 1286 1287 |
# File 'lib/bskyrb/generated_classes.rb', line 1285 def moderation @moderation end |
#relatedRecords ⇒ Object
Returns the value of attribute relatedRecords.
1281 1282 1283 |
# File 'lib/bskyrb/generated_classes.rb', line 1281 def end |
Class Method Details
.from_hash(hash) ⇒ Object
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 |
# File 'lib/bskyrb/generated_classes.rb', line 1295 def self.from_hash(hash) # httparty-returned string-keyed hash instance = new instance.send(:did=, hash["did"]) instance.send(:handle=, hash["handle"]) instance.send(:email=, hash["email"]) instance.send(:relatedRecords=, hash["relatedRecords"]) instance.send(:indexedAt=, hash["indexedAt"]) instance.send(:moderation=, hash["moderation"]) instance.send(:labels=, hash["labels"]) instance.send(:invitedBy=, hash["invitedBy"]) instance.send(:invites=, hash["invites"]) instance.send(:invitesDisabled=, hash["invitesDisabled"]) instance end |