files.com 1.0.202 → 1.0.203

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
  SHA256:
3
- metadata.gz: 240a6c056c1b310e0b6f4330117431670a03a2c7e72b9b034bf4e4d9b29b4118
4
- data.tar.gz: 4f6bd2e27ca0b9826a878d1b179f90e4c2e646b78647f539518b111f7fe27c3c
3
+ metadata.gz: 8fa0199352b4e0f590b26eece8da9642e04f7d55845d2c2826865a9a8fc91917
4
+ data.tar.gz: 6d210b0734dd4fcfca49ab8422edd4b5dd15eac65b4709d747ff8ae83d6c20ae
5
5
  SHA512:
6
- metadata.gz: 57b0ec1859a56969c3d7f37e249eadfa0bec69a7a4e9c2bc872af49b12743c9ffffa9380d1ef6b2ea04077a67260d9147f7bf315b836c9c8bc42482f8621ef8c
7
- data.tar.gz: 53d45d0726ac6453e25532e738656de9dd5f87600241725714a29ccaee3b1938fea4671ac55cd8232de559987b830d42de505ddf3ce6b2dea408e7f1bae8d559
6
+ metadata.gz: 1bd23773fb6fd91109d59e96364ea507fb511912e8201c2e8d62bc1ac71946121641a98227e31797feceda33d758b81ccb6cc20e947a7276f3dbc822f55d81b1
7
+ data.tar.gz: f4b941961517054bfd6bb0af0abe3914c34fdf3b409701505bb1114bcd9a030fa1647cd939aa09ac53d39f7bb5ba73ffb7949f7058c4ac1f52eeafb2c09fcf39
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.202
1
+ 1.0.203
@@ -12,7 +12,9 @@
12
12
  "inbox_code": "abc123",
13
13
  "clickwrap_body": "",
14
14
  "form_field_set_id": 1,
15
- "form_field_data": ""
15
+ "form_field_data": "",
16
+ "bundle_id": 1,
17
+ "bundle_recipient_id": 1
16
18
  }
17
19
  ```
18
20
 
@@ -25,6 +27,8 @@
25
27
  * `clickwrap_body` (string): Clickwrap text that was shown to the registrant
26
28
  * `form_field_set_id` (int64): Id of associated form field set
27
29
  * `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
30
+ * `bundle_id` (int64): Id of associated bundle
31
+ * `bundle_recipient_id` (int64): Id of associated bundle recipient
28
32
 
29
33
 
30
34
  ---
@@ -10,7 +10,9 @@
10
10
  "email": "john.doe@files.com",
11
11
  "clickwrap_body": "",
12
12
  "form_field_set_id": 1,
13
- "form_field_data": ""
13
+ "form_field_data": "",
14
+ "inbox_id": 1,
15
+ "inbox_recipient_id": 1
14
16
  }
15
17
  ```
16
18
 
@@ -21,6 +23,8 @@
21
23
  * `clickwrap_body` (string): Clickwrap text that was shown to the registrant
22
24
  * `form_field_set_id` (int64): Id of associated form field set
23
25
  * `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
26
+ * `inbox_id` (int64): Id of associated inbox
27
+ * `inbox_recipient_id` (int64): Id of associated inbox recipient
24
28
 
25
29
 
26
30
  ---
@@ -54,6 +54,16 @@ module Files
54
54
  @attributes[:form_field_data]
55
55
  end
56
56
 
57
+ # int64 - Id of associated bundle
58
+ def bundle_id
59
+ @attributes[:bundle_id]
60
+ end
61
+
62
+ # int64 - Id of associated bundle recipient
63
+ def bundle_recipient_id
64
+ @attributes[:bundle_recipient_id]
65
+ end
66
+
57
67
  # Parameters:
58
68
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
59
69
  # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
@@ -44,6 +44,16 @@ module Files
44
44
  @attributes[:form_field_data]
45
45
  end
46
46
 
47
+ # int64 - Id of associated inbox
48
+ def inbox_id
49
+ @attributes[:inbox_id]
50
+ end
51
+
52
+ # int64 - Id of associated inbox recipient
53
+ def inbox_recipient_id
54
+ @attributes[:inbox_recipient_id]
55
+ end
56
+
47
57
  # Parameters:
48
58
  # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
49
59
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.202
4
+ version: 1.0.203
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com