comet_backup_ruby_sdk 1.4.0 → 1.5.0
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/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/comet_backup_ruby_sdk.gemspec +1 -1
- data/lib/comet/comet_server.rb +197 -0
- data/lib/comet/definitions.rb +35 -3
- data/lib/comet/models/backup_job_detail.rb +33 -0
- data/lib/comet/models/branding_options.rb +9 -0
- data/lib/comet/models/branding_properties.rb +9 -0
- data/lib/comet/models/browse_office_365objects_response.rb +99 -0
- data/lib/comet/models/browse_sqlserver_response.rb +100 -0
- data/lib/comet/models/mssqlconnection.rb +120 -0
- data/lib/comet/models/my_sqlconnection.rb +102 -0
- data/lib/comet/models/office_365connection.rb +123 -0
- data/lib/comet/models/office_365credential.rb +111 -0
- data/lib/comet/models/office_365custom_setting.rb +132 -0
- data/lib/comet/models/office_365object_info.rb +118 -0
- data/lib/comet/models/organization.rb +6 -0
- data/lib/comet/models/private_branding_properties.rb +9 -0
- data/lib/comet/models/register_office_application_begin_response.rb +93 -0
- data/lib/comet/models/register_office_application_check_response.rb +100 -0
- data/lib/comet/models/self_backup_statistics.rb +108 -0
- data/lib/comet/models/server_meta_version_info.rb +15 -0
- data/lib/comet/models/stored_object.rb +85 -0
- data/lib/comet_backup_ruby_sdk.rb +11 -0
- metadata +13 -2
@@ -0,0 +1,99 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# BrowseOffice365ObjectsResponse is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class BrowseOffice365ObjectsResponse
|
16
|
+
|
17
|
+
# @type [Number] status
|
18
|
+
attr_accessor :status
|
19
|
+
|
20
|
+
# @type [String] message
|
21
|
+
attr_accessor :message
|
22
|
+
|
23
|
+
# @type [Array<Comet::Office365ObjectInfo>] objects
|
24
|
+
attr_accessor :objects
|
25
|
+
|
26
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
27
|
+
attr_accessor :unknown_json_fields
|
28
|
+
|
29
|
+
def initialize
|
30
|
+
clear
|
31
|
+
end
|
32
|
+
|
33
|
+
def clear
|
34
|
+
@status = 0
|
35
|
+
@message = ''
|
36
|
+
@objects = []
|
37
|
+
@unknown_json_fields = {}
|
38
|
+
end
|
39
|
+
|
40
|
+
# @param [String] json_string The complete object in JSON format
|
41
|
+
def from_json(json_string)
|
42
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
43
|
+
|
44
|
+
from_hash(JSON.parse(json_string))
|
45
|
+
end
|
46
|
+
|
47
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
48
|
+
def from_hash(obj)
|
49
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
50
|
+
|
51
|
+
obj.each do |k, v|
|
52
|
+
case k
|
53
|
+
when 'Status'
|
54
|
+
raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
|
55
|
+
|
56
|
+
@status = v
|
57
|
+
when 'Message'
|
58
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
59
|
+
|
60
|
+
@message = v
|
61
|
+
when 'Objects'
|
62
|
+
if v.nil?
|
63
|
+
@objects = []
|
64
|
+
else
|
65
|
+
@objects = Array.new(v.length)
|
66
|
+
v.each_with_index do |v1, i1|
|
67
|
+
@objects[i1] = Comet::Office365ObjectInfo.new
|
68
|
+
@objects[i1].from_hash(v1)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
else
|
72
|
+
@unknown_json_fields[k] = v
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
# @return [Hash] The complete object as a Ruby hash
|
78
|
+
def to_hash
|
79
|
+
ret = {}
|
80
|
+
ret['Status'] = @status
|
81
|
+
ret['Message'] = @message
|
82
|
+
ret['Objects'] = @objects
|
83
|
+
@unknown_json_fields.each do |k, v|
|
84
|
+
ret[k] = v
|
85
|
+
end
|
86
|
+
ret
|
87
|
+
end
|
88
|
+
|
89
|
+
# @return [Hash] The complete object as a Ruby hash
|
90
|
+
def to_h
|
91
|
+
to_hash
|
92
|
+
end
|
93
|
+
|
94
|
+
# @return [String] The complete object as a JSON string
|
95
|
+
def to_json(options = {})
|
96
|
+
to_hash.to_json(options)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# BrowseSQLServerResponse is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class BrowseSQLServerResponse
|
16
|
+
|
17
|
+
# @type [Number] status
|
18
|
+
attr_accessor :status
|
19
|
+
|
20
|
+
# @type [String] message
|
21
|
+
attr_accessor :message
|
22
|
+
|
23
|
+
# @type [Hash{String => String}] objects
|
24
|
+
attr_accessor :objects
|
25
|
+
|
26
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
27
|
+
attr_accessor :unknown_json_fields
|
28
|
+
|
29
|
+
def initialize
|
30
|
+
clear
|
31
|
+
end
|
32
|
+
|
33
|
+
def clear
|
34
|
+
@status = 0
|
35
|
+
@message = ''
|
36
|
+
@objects = {}
|
37
|
+
@unknown_json_fields = {}
|
38
|
+
end
|
39
|
+
|
40
|
+
# @param [String] json_string The complete object in JSON format
|
41
|
+
def from_json(json_string)
|
42
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
43
|
+
|
44
|
+
from_hash(JSON.parse(json_string))
|
45
|
+
end
|
46
|
+
|
47
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
48
|
+
def from_hash(obj)
|
49
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
50
|
+
|
51
|
+
obj.each do |k, v|
|
52
|
+
case k
|
53
|
+
when 'Status'
|
54
|
+
raise TypeError, "'v' expected Numeric, got #{v.class}" unless v.is_a? Numeric
|
55
|
+
|
56
|
+
@status = v
|
57
|
+
when 'Message'
|
58
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
59
|
+
|
60
|
+
@message = v
|
61
|
+
when 'Objects'
|
62
|
+
@objects = {}
|
63
|
+
if v.nil?
|
64
|
+
@objects = {}
|
65
|
+
else
|
66
|
+
v.each do |k1, v1|
|
67
|
+
raise TypeError, "'v1' expected String, got #{v1.class}" unless v1.is_a? String
|
68
|
+
|
69
|
+
@objects[k1] = v1
|
70
|
+
end
|
71
|
+
end
|
72
|
+
else
|
73
|
+
@unknown_json_fields[k] = v
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
# @return [Hash] The complete object as a Ruby hash
|
79
|
+
def to_hash
|
80
|
+
ret = {}
|
81
|
+
ret['Status'] = @status
|
82
|
+
ret['Message'] = @message
|
83
|
+
ret['Objects'] = @objects
|
84
|
+
@unknown_json_fields.each do |k, v|
|
85
|
+
ret[k] = v
|
86
|
+
end
|
87
|
+
ret
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [Hash] The complete object as a Ruby hash
|
91
|
+
def to_h
|
92
|
+
to_hash
|
93
|
+
end
|
94
|
+
|
95
|
+
# @return [String] The complete object as a JSON string
|
96
|
+
def to_json(options = {})
|
97
|
+
to_hash.to_json(options)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# MSSQLConnection is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class MSSQLConnection
|
16
|
+
|
17
|
+
# @type [String] type
|
18
|
+
attr_accessor :type
|
19
|
+
|
20
|
+
# @type [String] username
|
21
|
+
attr_accessor :username
|
22
|
+
|
23
|
+
# @type [String] password
|
24
|
+
attr_accessor :password
|
25
|
+
|
26
|
+
# @type [String] hostname
|
27
|
+
attr_accessor :hostname
|
28
|
+
|
29
|
+
# @type [String] instance_name
|
30
|
+
attr_accessor :instance_name
|
31
|
+
|
32
|
+
# @type [String] method
|
33
|
+
attr_accessor :method
|
34
|
+
|
35
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
36
|
+
attr_accessor :unknown_json_fields
|
37
|
+
|
38
|
+
def initialize
|
39
|
+
clear
|
40
|
+
end
|
41
|
+
|
42
|
+
def clear
|
43
|
+
@type = ''
|
44
|
+
@username = ''
|
45
|
+
@password = ''
|
46
|
+
@hostname = ''
|
47
|
+
@instance_name = ''
|
48
|
+
@method = ''
|
49
|
+
@unknown_json_fields = {}
|
50
|
+
end
|
51
|
+
|
52
|
+
# @param [String] json_string The complete object in JSON format
|
53
|
+
def from_json(json_string)
|
54
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
55
|
+
|
56
|
+
from_hash(JSON.parse(json_string))
|
57
|
+
end
|
58
|
+
|
59
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
60
|
+
def from_hash(obj)
|
61
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
62
|
+
|
63
|
+
obj.each do |k, v|
|
64
|
+
case k
|
65
|
+
when 'Type'
|
66
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
67
|
+
|
68
|
+
@type = v
|
69
|
+
when 'Username'
|
70
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
71
|
+
|
72
|
+
@username = v
|
73
|
+
when 'Password'
|
74
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
75
|
+
|
76
|
+
@password = v
|
77
|
+
when 'Hostname'
|
78
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
79
|
+
|
80
|
+
@hostname = v
|
81
|
+
when 'InstanceName'
|
82
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
83
|
+
|
84
|
+
@instance_name = v
|
85
|
+
when 'Method'
|
86
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
87
|
+
|
88
|
+
@method = v
|
89
|
+
else
|
90
|
+
@unknown_json_fields[k] = v
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# @return [Hash] The complete object as a Ruby hash
|
96
|
+
def to_hash
|
97
|
+
ret = {}
|
98
|
+
ret['Type'] = @type
|
99
|
+
ret['Username'] = @username
|
100
|
+
ret['Password'] = @password
|
101
|
+
ret['Hostname'] = @hostname
|
102
|
+
ret['InstanceName'] = @instance_name
|
103
|
+
ret['Method'] = @method
|
104
|
+
@unknown_json_fields.each do |k, v|
|
105
|
+
ret[k] = v
|
106
|
+
end
|
107
|
+
ret
|
108
|
+
end
|
109
|
+
|
110
|
+
# @return [Hash] The complete object as a Ruby hash
|
111
|
+
def to_h
|
112
|
+
to_hash
|
113
|
+
end
|
114
|
+
|
115
|
+
# @return [String] The complete object as a JSON string
|
116
|
+
def to_json(options = {})
|
117
|
+
to_hash.to_json(options)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# MySQLConnection is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class MySQLConnection
|
16
|
+
|
17
|
+
# @type [String] host
|
18
|
+
attr_accessor :host
|
19
|
+
|
20
|
+
# @type [String] port
|
21
|
+
attr_accessor :port
|
22
|
+
|
23
|
+
# @type [String] username
|
24
|
+
attr_accessor :username
|
25
|
+
|
26
|
+
# @type [String] password
|
27
|
+
attr_accessor :password
|
28
|
+
|
29
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
30
|
+
attr_accessor :unknown_json_fields
|
31
|
+
|
32
|
+
def initialize
|
33
|
+
clear
|
34
|
+
end
|
35
|
+
|
36
|
+
def clear
|
37
|
+
@host = ''
|
38
|
+
@port = ''
|
39
|
+
@username = ''
|
40
|
+
@password = ''
|
41
|
+
@unknown_json_fields = {}
|
42
|
+
end
|
43
|
+
|
44
|
+
# @param [String] json_string The complete object in JSON format
|
45
|
+
def from_json(json_string)
|
46
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
47
|
+
|
48
|
+
from_hash(JSON.parse(json_string))
|
49
|
+
end
|
50
|
+
|
51
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
52
|
+
def from_hash(obj)
|
53
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
54
|
+
|
55
|
+
obj.each do |k, v|
|
56
|
+
case k
|
57
|
+
when 'Host'
|
58
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
59
|
+
|
60
|
+
@host = v
|
61
|
+
when 'Port'
|
62
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
63
|
+
|
64
|
+
@port = v
|
65
|
+
when 'Username'
|
66
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
67
|
+
|
68
|
+
@username = v
|
69
|
+
when 'Password'
|
70
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
71
|
+
|
72
|
+
@password = v
|
73
|
+
else
|
74
|
+
@unknown_json_fields[k] = v
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
# @return [Hash] The complete object as a Ruby hash
|
80
|
+
def to_hash
|
81
|
+
ret = {}
|
82
|
+
ret['Host'] = @host
|
83
|
+
ret['Port'] = @port
|
84
|
+
ret['Username'] = @username
|
85
|
+
ret['Password'] = @password
|
86
|
+
@unknown_json_fields.each do |k, v|
|
87
|
+
ret[k] = v
|
88
|
+
end
|
89
|
+
ret
|
90
|
+
end
|
91
|
+
|
92
|
+
# @return [Hash] The complete object as a Ruby hash
|
93
|
+
def to_h
|
94
|
+
to_hash
|
95
|
+
end
|
96
|
+
|
97
|
+
# @return [String] The complete object as a JSON string
|
98
|
+
def to_json(options = {})
|
99
|
+
to_hash.to_json(options)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,123 @@
|
|
1
|
+
#!/usr/bin/env ruby --enable-frozen-string-literal
|
2
|
+
#
|
3
|
+
# Copyright (c) 2020-2021 Comet Licensing Ltd.
|
4
|
+
# Please see the LICENSE file for usage information.
|
5
|
+
#
|
6
|
+
# SPDX-License-Identifier: MIT
|
7
|
+
#
|
8
|
+
# frozen_string_literal: true
|
9
|
+
|
10
|
+
require 'json'
|
11
|
+
|
12
|
+
module Comet
|
13
|
+
|
14
|
+
# Office365Connection is a typed class wrapper around the underlying Comet Server API data structure.
|
15
|
+
class Office365Connection
|
16
|
+
|
17
|
+
# @type [String] feature_flag
|
18
|
+
attr_accessor :feature_flag
|
19
|
+
|
20
|
+
# @type [Comet::Office365Credential] credential
|
21
|
+
attr_accessor :credential
|
22
|
+
|
23
|
+
# @type [Comet::Office365CustomSetting] custom_setting
|
24
|
+
attr_accessor :custom_setting
|
25
|
+
|
26
|
+
# @type [Array<String>] mailbox_unique_members
|
27
|
+
attr_accessor :mailbox_unique_members
|
28
|
+
|
29
|
+
# @type [Array<String>] site_unique_members
|
30
|
+
attr_accessor :site_unique_members
|
31
|
+
|
32
|
+
# @type [Hash] Hidden storage to preserve future properties for non-destructive roundtrip operations
|
33
|
+
attr_accessor :unknown_json_fields
|
34
|
+
|
35
|
+
def initialize
|
36
|
+
clear
|
37
|
+
end
|
38
|
+
|
39
|
+
def clear
|
40
|
+
@feature_flag = ''
|
41
|
+
@credential = Comet::Office365Credential.new
|
42
|
+
@custom_setting = Comet::Office365CustomSetting.new
|
43
|
+
@mailbox_unique_members = []
|
44
|
+
@site_unique_members = []
|
45
|
+
@unknown_json_fields = {}
|
46
|
+
end
|
47
|
+
|
48
|
+
# @param [String] json_string The complete object in JSON format
|
49
|
+
def from_json(json_string)
|
50
|
+
raise TypeError, "'json_string' expected String, got #{json_string.class}" unless json_string.is_a? String
|
51
|
+
|
52
|
+
from_hash(JSON.parse(json_string))
|
53
|
+
end
|
54
|
+
|
55
|
+
# @param [Hash] obj The complete object as a Ruby hash
|
56
|
+
def from_hash(obj)
|
57
|
+
raise TypeError, "'obj' expected Hash, got #{obj.class}" unless obj.is_a? Hash
|
58
|
+
|
59
|
+
obj.each do |k, v|
|
60
|
+
case k
|
61
|
+
when 'FeatureFlag'
|
62
|
+
raise TypeError, "'v' expected String, got #{v.class}" unless v.is_a? String
|
63
|
+
|
64
|
+
@feature_flag = v
|
65
|
+
when 'Credential'
|
66
|
+
@credential = Comet::Office365Credential.new
|
67
|
+
@credential.from_hash(v)
|
68
|
+
when 'CustomSetting'
|
69
|
+
@custom_setting = Comet::Office365CustomSetting.new
|
70
|
+
@custom_setting.from_hash(v)
|
71
|
+
when 'MailboxUniqueMembers'
|
72
|
+
if v.nil?
|
73
|
+
@mailbox_unique_members = []
|
74
|
+
else
|
75
|
+
@mailbox_unique_members = Array.new(v.length)
|
76
|
+
v.each_with_index do |v1, i1|
|
77
|
+
raise TypeError, "'v1' expected String, got #{v1.class}" unless v1.is_a? String
|
78
|
+
|
79
|
+
@mailbox_unique_members[i1] = v1
|
80
|
+
end
|
81
|
+
end
|
82
|
+
when 'SiteUniqueMembers'
|
83
|
+
if v.nil?
|
84
|
+
@site_unique_members = []
|
85
|
+
else
|
86
|
+
@site_unique_members = Array.new(v.length)
|
87
|
+
v.each_with_index do |v1, i1|
|
88
|
+
raise TypeError, "'v1' expected String, got #{v1.class}" unless v1.is_a? String
|
89
|
+
|
90
|
+
@site_unique_members[i1] = v1
|
91
|
+
end
|
92
|
+
end
|
93
|
+
else
|
94
|
+
@unknown_json_fields[k] = v
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
# @return [Hash] The complete object as a Ruby hash
|
100
|
+
def to_hash
|
101
|
+
ret = {}
|
102
|
+
ret['FeatureFlag'] = @feature_flag
|
103
|
+
ret['Credential'] = @credential
|
104
|
+
ret['CustomSetting'] = @custom_setting
|
105
|
+
ret['MailboxUniqueMembers'] = @mailbox_unique_members
|
106
|
+
ret['SiteUniqueMembers'] = @site_unique_members
|
107
|
+
@unknown_json_fields.each do |k, v|
|
108
|
+
ret[k] = v
|
109
|
+
end
|
110
|
+
ret
|
111
|
+
end
|
112
|
+
|
113
|
+
# @return [Hash] The complete object as a Ruby hash
|
114
|
+
def to_h
|
115
|
+
to_hash
|
116
|
+
end
|
117
|
+
|
118
|
+
# @return [String] The complete object as a JSON string
|
119
|
+
def to_json(options = {})
|
120
|
+
to_hash.to_json(options)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|