Sha256: c5d7c87cc88d32aae415a6a00435f6967b28f318b0e3d89a621087ab48b760f8
Contents?: true
Size: 327 Bytes
Versions: 15
Compression:
Stored size: 327 Bytes
Contents
module SiebelDonations class Profile < Base def self.path() '/profiles'; end attr_reader :id, :name, :designations def initialize(json = {}) super @designations = json['designations'] ? json['designations'].collect { |designation_json| Designation.new(designation_json) } : [] end end end
Version data entries
15 entries across 15 versions & 1 rubygems