class MeetupClientRails::Model::Photo
Attributes
base_url[RW]
created[RW]
highres_link[RW]
id[RW]
link[RW]
member[RW]
photo_album[RW]
photo_link[RW]
thumb_link[RW]
type[RW]
updated[RW]
utc_offset[RW]
Public Class Methods
new(json_response = {})
click to toggle source
# File lib/meetup_client_rails/models/photo.rb, line 7 def initialize(json_response = {}) @id = json_response['id'] @highres_link= json_response['highres_link'] @photo_link = json_response['photo_link'] @thumb_link = json_response['thumb_link'] @type = json_response['type'] @base_url = json_response['base_url'] @link = json_response['link'] @created = json_response['created'] @updated = json_response['updated'] @utc_offset = json_response['utc_offset'] @member = json_response['member'] @photo_album = json_response['photo_album'] end