moxiworks_platform 0.13.12 → 0.13.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6eed5e9e30c5f49f38ec3131bfbb12e42c056c10
4
- data.tar.gz: 4faeef74100f85cde8ebb1a08409d150b33e92c9
3
+ metadata.gz: 30853ab3a9f3d499df0bcce372cbeaf02a7e9e8f
4
+ data.tar.gz: 4c311b207e1d204f17473d9ae185721676d3a4fd
5
5
  SHA512:
6
- metadata.gz: dca294ba3d30a195c7ec8c512f2452fba4800ad5966e8d911674a29f7f5bf8aeeae40958bb308111e5ac1c1df52d5a2f686479c28d60b624d97a8b95a34d64b9
7
- data.tar.gz: 4724c6b82fc4e67a8e478ef9da6c04cb4a14cde9aa62337a209af88b16bf57c08250f551acef690ac60e0115762a6cdc16cea52dcf1fc58480cc73803c6f42fd
6
+ metadata.gz: 156c7440875f5408eef70b21cd9918e935f6edb6972da92c033decd0e471e8117cb1621fe456dac07358d18a0592b0e9a2e01d5c6740a25c6b8160073b27753b
7
+ data.tar.gz: 3770eae8e5d2bf537f34ee1a935273f52695bca7a0e69cfe80ac896ba660ada50047d7fa43bf13545eab310558656e760b68f2f107de188c322042437f1fbd54
@@ -55,8 +55,10 @@ module MoxiworksPlatform
55
55
 
56
56
  # Search an Agent's ActionLog entries in Moxi Works Platform
57
57
  # @param [Hash] opts named parameter Hash
58
- # @option opts [String] :moxi_works_agent_id *REQUIRED* The Moxi Works Agent ID for the agent to which this ActionLog is associated
59
- # @option opts [String] :partner_contact_id *REQUIRED* Your system's unique ID for the contact for whom the ActionLog entry is being created.
58
+ # @option opts [String] :moxi_works_agent_id *REQUIRED* The Moxi Works Agent ID for the agent to which this ActionLog is associated -- moxi_works_agent_id or agent_uuid must be passed
59
+ # @option opts [String] :agent_uuid *REQUIRED* The Agent UUID for the agent to which this ActionLog is associated -- moxi_works_agent_id or agent_uuid must be passed
60
+ # @option opts [String] :partner_contact_id *REQUIRED* Your system's unique ID for the contact for whom the ActionLog entry is being created. -- partner_contact_id or moxi_works_contact_id must be passed
61
+ # @option opts [String] :moxi_works_contact_id *REQUIRED* MoxiWorks' unique ID for the contact for whom the ActionLog entry is being created. -- partner_contact_id or moxi_works_contact_id must be passed
60
62
  #
61
63
  # @return [Array] containing MoxiworksPlatform::ActionLog objects
62
64
  #
@@ -16,11 +16,84 @@ module MoxiworksPlatform
16
16
  # @return [String] the UUID of the office which the Agent is associated
17
17
  attr_accessor :moxi_works_office_id
18
18
 
19
- # @!attribute string the id of the agent used by the company of the agent
19
+ # @!attribute string :client_agent_id
20
20
  #
21
- # @return [String] the UUID of the office which the Agent is associated
21
+ # @return [String] the id of the agent used by the company of the agent
22
22
  attr_accessor :client_agent_id
23
23
 
24
+
25
+ # @!attribute string agent_id
26
+ #
27
+ # @return [String] the UUID of the Agent
28
+ attr_accessor :agent_id
29
+
30
+
31
+ # @!attribute string office_id
32
+ #
33
+ # @return [String] the office ID of the agent
34
+ attr_accessor :office_id
35
+
36
+
37
+ # @!attribute string company_id
38
+ #
39
+ # @return [String] the company id of the agent
40
+ attr_accessor :company_id
41
+
42
+
43
+ # @!attribute string alt_phone_number
44
+ #
45
+ # @return [String] alternate phone number for agent
46
+ attr_accessor :alt_phone_number
47
+
48
+
49
+ # @!attribute string lead_routing_email_address
50
+ #
51
+ # @return [String] the lead routing email address of the agent
52
+ attr_accessor :lead_routing_email_address
53
+
54
+
55
+ # @!attribute string title
56
+ #
57
+ # @return [String] the title of the Agent
58
+ attr_accessor :title
59
+
60
+
61
+ # @!attribute string uuid
62
+ #
63
+ # @return [String] the UUID of the Agent
64
+ attr_accessor :uuid
65
+
66
+
67
+ # @!attribute string twitter
68
+ #
69
+ # @return [String] the twitter handle of the agent
70
+ attr_accessor :twitter
71
+
72
+
73
+ # @!attribute string gci_goal
74
+ #
75
+ # @return [String] the GCI goal of the Agent
76
+ attr_accessor :gci_goal
77
+
78
+
79
+ # @!attribute string buyer_commission_rate
80
+ #
81
+ # @return [String] the buyer commission rate of the Agent
82
+ attr_accessor :buyer_commission_rate
83
+
84
+
85
+ # @!attribute string seller_commission_rate
86
+ #
87
+ # @return [String] the seller commission rate of the Agent
88
+ attr_accessor :seller_commission_rate
89
+
90
+
91
+ # @!attribute string alternate_offices
92
+ #
93
+ # @return [Array] any alternate offices the agent is associated with
94
+ attr_accessor :alternate_offices
95
+
96
+
24
97
  # @!attribute string the id office used by the company of the agent
25
98
  #
26
99
  # @return [String] the internal of the office which the Agent is associated used by the company
@@ -31,25 +104,26 @@ module MoxiworksPlatform
31
104
  # @return [String] the UUID of the office which the Agent is associated
32
105
  attr_accessor :client_company_id
33
106
 
34
- # @!attribute address_street
107
+ # @!attribute mls_agent_id
35
108
  #
36
- # @return [String] the agent's address, street and number
37
- attr_accessor :address_street
109
+ # @return [String] MLS ID for the listing agent
110
+ attr_accessor :mls_agent_id
38
111
 
39
- # @!attribute address_city
112
+ # @!attribute license
40
113
  #
41
- # @return [String] the agent's address, city
42
- attr_accessor :address_city
114
+ # @return [String] license number for the listing agent
115
+ attr_accessor :license
43
116
 
44
- # @!attribute address_state
117
+ # @!attribute mls_name
45
118
  #
46
- # @return [String] the agent's address, state
47
- attr_accessor :address_state
119
+ # @return [String] the name of the listing Agent's mls
120
+ attr_accessor :mls_name
48
121
 
49
- # @!attribute address_zip
122
+ # @!attribute mls_abbreviation
50
123
  #
51
- # @return [String] the agent's address, zip code
52
- attr_accessor :address_zip
124
+ # @return [String] This is the standard abbreviation of the primary MLS utilized by the agent
125
+ attr_accessor :mls_abbreviation
126
+
53
127
 
54
128
  # @!attribute office_address_street
55
129
  #
@@ -275,16 +275,50 @@ module MoxiworksPlatform
275
275
  # @return [Integer] price listing was sold for
276
276
  attr_accessor :sold_price
277
277
 
278
- # @!attribute title
278
+ # @!attribute public_title
279
279
  #
280
280
  # @return [String] Title of the listing
281
- attr_accessor :title
281
+ attr_accessor :public_title
282
282
 
283
283
  # @!attribute company_listing_attributes
284
284
  #
285
285
  # @return [Array] company specific attributes
286
286
  attr_accessor :company_listing_attributes
287
287
 
288
+ # @!attribute secondary_list_agent_full_name
289
+ #
290
+ # @return [String] Secondary listing agent full name
291
+ attr_accessor :secondary_list_agent_full_name
292
+
293
+ # @!attribute community
294
+ #
295
+ # @return [String] community the listing is located in
296
+ attr_accessor :community
297
+
298
+ # @!attribute list_office_aor_area
299
+ #
300
+ # @return [String] The MLS Area which this listing is in
301
+ attr_accessor :list_office_aor_area
302
+
303
+ # @!attribute status
304
+ #
305
+ # @return [String] status of the listing
306
+ attr_accessor :status
307
+
308
+ # @!attribute virtual_tour_url
309
+ #
310
+ # @return [String] virtual tour url of the listing
311
+ attr_accessor :virtual_tour_url
312
+
313
+ # @!attribute list_agent_uuid
314
+ #
315
+ # @return [String] listing agent UUID
316
+ attr_accessor :list_agent_uuid
317
+
318
+ # @!attribute secondary_list_agent_uuid
319
+ #
320
+ # @return [String] Secondary list agent UUID
321
+ attr_accessor :secondary_list_agent_uuid
288
322
 
289
323
  # Find a listing on the Moxi Works Platform
290
324
  # @param [Hash] opts named parameter Hash
@@ -1,3 +1,3 @@
1
1
  module MoxiworksPlatform
2
- VERSION = '0.13.12'
2
+ VERSION = '0.13.13'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moxiworks_platform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.12
4
+ version: 0.13.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tres Wong-Godfrey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-31 00:00:00.000000000 Z
11
+ date: 2018-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client