moxiworks_platform 0.13.9 → 0.13.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/moxiworks_platform/agent.rb +32 -1
- data/lib/moxiworks_platform/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0f4df2fd358c2efac755406b50e333441767f35
|
|
4
|
+
data.tar.gz: a8b0f8d23a413677a13022d36539a248341bb505
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6956b472d379971b300db2a2043f433f945fe67df2232e7939682f92ab4b459324bbb107bd1f05776d8c1086a78198756bd1a6f2a2f224b9ecf200983f659019
|
|
7
|
+
data.tar.gz: 1347c2a4bb799b3d667b1533d79335ba2e350763d5e3514bbac5fdea552f9bb8a7b3d5bc5139733d5cac80820ef97ffaa64e171ca4e7790ca5426e29497ffcf4
|
|
@@ -170,10 +170,41 @@ module MoxiworksPlatform
|
|
|
170
170
|
|
|
171
171
|
# @!attribute available_mls
|
|
172
172
|
#
|
|
173
|
-
# @return [
|
|
173
|
+
# @return [Array] available MLSs for this agent
|
|
174
174
|
attr_accessor :available_mls
|
|
175
175
|
|
|
176
176
|
|
|
177
|
+
# @!attribute altnernate_offices
|
|
178
|
+
#
|
|
179
|
+
# @return [Array] alternate offices for this agent
|
|
180
|
+
attr_accessor :altnernate_offices
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
# @!attribute gci_goal
|
|
184
|
+
#
|
|
185
|
+
# @return [Integer] GCI Goal for this agent
|
|
186
|
+
attr_accessor :gci_goal
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
# @!attribute region
|
|
190
|
+
#
|
|
191
|
+
# @return [String] region for this agent
|
|
192
|
+
attr_accessor :region
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
# @!attribute buyer_commission_rate
|
|
196
|
+
#
|
|
197
|
+
# @return [Hash] buyer commission rate for this agent
|
|
198
|
+
attr_accessor :buyer_commission_rate
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
# @!attribute seller_commission_rate
|
|
202
|
+
#
|
|
203
|
+
# @return [Hash] seller commission rate for this agent
|
|
204
|
+
attr_accessor :seller_commission_rate
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
177
208
|
# Find an Agent on the Moxi Works Platform
|
|
178
209
|
# @param [Hash] opts named parameter Hash
|
|
179
210
|
# @option opts [String] :moxi_works_agent_id *REQUIRED* -- either :moxi_works_agent_id or :agent_uuid is required -- The Moxi Works Agent ID for the agent
|