Sha256: 5f647222988da37bda12ae0eedd54d4461773c2a9da62574b3f6486c0434281d

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

module Mashery
  class Member < RpcClient::Base
    attribute  :username,             String
    attribute  :created,              DateTime
    attribute  :updated,              DateTime
    attribute  :email,                String
    attribute  :display_name,         String
    attribute  :url,                  String
    attribute  :blog,                 String
    attribute  :im,                   String
    attribute  :imsvc,                String
    attribute  :phone,                String
    attribute  :company,              String
    attribute  :address1,             String
    attribute  :address2,             String
    attribute  :locality,             String
    attribute  :region,               String
    attribute  :postal_code,          String
    attribute  :country_code,         String
    attribute  :first_name,           String
    attribute  :last_name,            String
    attribute  :registration_ipaddr,  String
    attribute  :area_status,          String
    attribute  :external_id,          String
    attribute  :passwd_new,           String
    attribute  :object_type,          String

    def inspect
      "<Mashery::Member email=#{email.inspect} displayname=#{display_name.inspect} username=#{username.inspect}>"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mashery_rails-0.6.9.pre4 lib/mashery/member.rb