Module: CirroIOV2::Responses::Base
- Included in:
- EpamHeroesBadgeResponse, GigInvitationResponse, GigResponse, GigResultResponse, GigTaskResponse, GigTimeActivityResponse, NotificationBroadcastResponse, NotificationConfigurationResponse, NotificationLayoutResponse, NotificationLayoutTemplateResponse, NotificationLocaleResponse, NotificationTemplateResponse, NotificationTopicPreferenceResponse, NotificationTopicResponse, PayoutResponse, SpaceInvitationResponse, UserInvitationAttemptResponse, UserNotificationPreferenceResponse, UserResponse
- Defined in:
- lib/cirro_io_v2/responses/base.rb
Instance Method Summary collapse
Instance Method Details
#initialize(body) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/cirro_io_v2/responses/base.rb', line 4 def initialize(body) body = body.deep_symbolize_keys if body[:object] == 'list' list_item_class = self.class.name.gsub('List', '').constantize body[:data] = body[:data].map { |list_item| list_item_class.new(list_item) } end if self.class.const_defined?('NESTED_RESPONSES') self.class::NESTED_RESPONSES.each do |attribute_name, class_name| next unless members.include?(attribute_name) next unless body[attribute_name] body[attribute_name] = "CirroIOV2::Responses::#{class_name}".constantize.new(body[attribute_name]) end end super(**body.slice(*members)) end |