class MeetupClientRails::Model::PhotoAlbum

Attributes

album_photo[RW]
created[RW]
event[RW]
group[RW]
id[RW]
photo_count[RW]
photo_sample[RW]
title[RW]
updated[RW]

Public Class Methods

new(json_response = {}) click to toggle source
# File lib/meetup_client_rails/models/photo_album.rb, line 7
def initialize(json_response = {})
  @id = json_response['id']
  @title = json_response['title']
  @photo_count = json_response['photo_count']
  @event = json_response['event']
  @photo_sample = json_response['photo_sample']
  @link = json_response['link']
  @created = json_response['created']
  @updated = json_response['updated']
  @group = json_response['group']
  @album_photo = json_response['album_photo']
end