doorflow 1.0.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 +7 -0
- data/CHANGELOG.md +27 -0
- data/LICENSE +21 -0
- data/README.md +356 -0
- data/bin/post-generate +47 -0
- data/doorflow.gemspec +55 -0
- data/lib/doorflow/auth/doorflow_auth.rb +308 -0
- data/lib/doorflow/auth/file_token_storage.rb +104 -0
- data/lib/doorflow/auth/token_storage.rb +106 -0
- data/lib/doorflow/auth.rb +32 -0
- data/lib/doorflow/client/account_proxy.rb +19 -0
- data/lib/doorflow/client/channels_proxy.rb +64 -0
- data/lib/doorflow/client/credential_types_proxy.rb +28 -0
- data/lib/doorflow/client/credentials_proxy.rb +73 -0
- data/lib/doorflow/client/events_proxy.rb +33 -0
- data/lib/doorflow/client/group_reservations_proxy.rb +46 -0
- data/lib/doorflow/client/groups_proxy.rb +51 -0
- data/lib/doorflow/client/notification_rules_proxy.rb +46 -0
- data/lib/doorflow/client/people_proxy.rb +69 -0
- data/lib/doorflow/client/reservations_proxy.rb +46 -0
- data/lib/doorflow/client/resource_proxy.rb +113 -0
- data/lib/doorflow/client/roles_proxy.rb +28 -0
- data/lib/doorflow/client/sites_proxy.rb +28 -0
- data/lib/doorflow/client.rb +263 -0
- data/lib/doorflow/errors/api_error.rb +28 -0
- data/lib/doorflow/errors/authentication_error.rb +23 -0
- data/lib/doorflow/errors/doorflow_error.rb +75 -0
- data/lib/doorflow/errors/forbidden_error.rb +22 -0
- data/lib/doorflow/errors/not_found_error.rb +22 -0
- data/lib/doorflow/errors/rate_limit_error.rb +65 -0
- data/lib/doorflow/errors/validation_error.rb +83 -0
- data/lib/doorflow/errors.rb +152 -0
- data/lib/doorflow/list_object.rb +125 -0
- data/lib/doorflow/resource.rb +153 -0
- data/lib/doorflow/resources/account.rb +66 -0
- data/lib/doorflow/resources/channel.rb +104 -0
- data/lib/doorflow/resources/credential.rb +73 -0
- data/lib/doorflow/resources/credential_type.rb +30 -0
- data/lib/doorflow/resources/event.rb +47 -0
- data/lib/doorflow/resources/group.rb +71 -0
- data/lib/doorflow/resources/group_reservation.rb +55 -0
- data/lib/doorflow/resources/notification_rule.rb +71 -0
- data/lib/doorflow/resources/person.rb +102 -0
- data/lib/doorflow/resources/reservation.rb +72 -0
- data/lib/doorflow/resources/role.rb +66 -0
- data/lib/doorflow/resources/site.rb +66 -0
- data/lib/doorflow/webhooks/event.rb +92 -0
- data/lib/doorflow/webhooks/handler.rb +206 -0
- data/lib/doorflow/webhooks/signature_verifier.rb +120 -0
- data/lib/doorflow/webhooks.rb +47 -0
- data/lib/doorflow-api/api/accounts_api.rb +79 -0
- data/lib/doorflow-api/api/admission_requests_api.rb +85 -0
- data/lib/doorflow-api/api/channels_api.rb +757 -0
- data/lib/doorflow-api/api/credential_types_api.rb +88 -0
- data/lib/doorflow-api/api/credentials_api.rb +458 -0
- data/lib/doorflow-api/api/events_api.rb +190 -0
- data/lib/doorflow-api/api/group_reservations_api.rb +225 -0
- data/lib/doorflow-api/api/groups_api.rb +79 -0
- data/lib/doorflow-api/api/notification_rules_api.rb +347 -0
- data/lib/doorflow-api/api/oauth_api.rb +360 -0
- data/lib/doorflow-api/api/people_api.rb +372 -0
- data/lib/doorflow-api/api/reservations_api.rb +225 -0
- data/lib/doorflow-api/api/roles_api.rb +79 -0
- data/lib/doorflow-api/api/sites_api.rb +88 -0
- data/lib/doorflow-api/api/sync_api.rb +79 -0
- data/lib/doorflow-api/api_client.rb +437 -0
- data/lib/doorflow-api/api_error.rb +63 -0
- data/lib/doorflow-api/api_model_base.rb +88 -0
- data/lib/doorflow-api/configuration.rb +399 -0
- data/lib/doorflow-api/models/account.rb +334 -0
- data/lib/doorflow-api/models/account_passport.rb +193 -0
- data/lib/doorflow-api/models/account_reseller.rb +192 -0
- data/lib/doorflow-api/models/account_sync.rb +214 -0
- data/lib/doorflow-api/models/account_user.rb +247 -0
- data/lib/doorflow-api/models/admission_request.rb +328 -0
- data/lib/doorflow-api/models/admission_request_door_controller.rb +159 -0
- data/lib/doorflow-api/models/admission_request_person.rb +159 -0
- data/lib/doorflow-api/models/admit_channel202_response.rb +192 -0
- data/lib/doorflow-api/models/admit_person202_response.rb +192 -0
- data/lib/doorflow-api/models/admit_person403_response.rb +157 -0
- data/lib/doorflow-api/models/admit_person_request.rb +165 -0
- data/lib/doorflow-api/models/auto_unlock_channel400_response.rb +156 -0
- data/lib/doorflow-api/models/auto_unlock_channel_request.rb +149 -0
- data/lib/doorflow-api/models/channel.rb +498 -0
- data/lib/doorflow-api/models/channel_auto_unlock.rb +159 -0
- data/lib/doorflow-api/models/channel_lockdown.rb +176 -0
- data/lib/doorflow-api/models/channel_lockdown_aux_lockdown.rb +148 -0
- data/lib/doorflow-api/models/channel_lockdown_card_lockdown.rb +148 -0
- data/lib/doorflow-api/models/channel_lockdown_rex_lockdown.rb +148 -0
- data/lib/doorflow-api/models/channel_mode.rb +212 -0
- data/lib/doorflow-api/models/channel_sync.rb +200 -0
- data/lib/doorflow-api/models/create_credential422_response.rb +157 -0
- data/lib/doorflow-api/models/create_credential422_response_errors.rb +173 -0
- data/lib/doorflow-api/models/credential.rb +336 -0
- data/lib/doorflow-api/models/credential_input.rb +164 -0
- data/lib/doorflow-api/models/credential_input_person_credential.rb +187 -0
- data/lib/doorflow-api/models/credential_type.rb +232 -0
- data/lib/doorflow-api/models/credential_update_input.rb +164 -0
- data/lib/doorflow-api/models/credential_update_input_person_credential.rb +165 -0
- data/lib/doorflow-api/models/delete_group_reservation200_response.rb +147 -0
- data/lib/doorflow-api/models/error.rb +192 -0
- data/lib/doorflow-api/models/event.rb +361 -0
- data/lib/doorflow-api/models/get_access_token200_response.rb +266 -0
- data/lib/doorflow-api/models/get_access_token400_response.rb +190 -0
- data/lib/doorflow-api/models/get_access_token401_response.rb +156 -0
- data/lib/doorflow-api/models/get_admission_request401_response.rb +156 -0
- data/lib/doorflow-api/models/get_admission_request403_response.rb +156 -0
- data/lib/doorflow-api/models/get_admission_request404_response.rb +156 -0
- data/lib/doorflow-api/models/get_admission_request500_response.rb +156 -0
- data/lib/doorflow-api/models/get_token_info200_response.rb +267 -0
- data/lib/doorflow-api/models/get_token_info200_response_application.rb +148 -0
- data/lib/doorflow-api/models/get_token_info401_response.rb +156 -0
- data/lib/doorflow-api/models/group.rb +284 -0
- data/lib/doorflow-api/models/group_reservation.rb +380 -0
- data/lib/doorflow-api/models/group_reservation_input.rb +164 -0
- data/lib/doorflow-api/models/group_reservation_input_group_reservation.rb +257 -0
- data/lib/doorflow-api/models/initiate_sync429_response.rb +243 -0
- data/lib/doorflow-api/models/list_events400_response.rb +156 -0
- data/lib/doorflow-api/models/lockdown_channel_request.rb +168 -0
- data/lib/doorflow-api/models/notification_rule.rb +324 -0
- data/lib/doorflow-api/models/notification_rule_actions_inner.rb +168 -0
- data/lib/doorflow-api/models/notification_rule_conditions_inner.rb +168 -0
- data/lib/doorflow-api/models/notification_rule_events_inner.rb +158 -0
- data/lib/doorflow-api/models/notification_rule_input.rb +254 -0
- data/lib/doorflow-api/models/person.rb +511 -0
- data/lib/doorflow-api/models/person_input.rb +413 -0
- data/lib/doorflow-api/models/reservation.rb +329 -0
- data/lib/doorflow-api/models/reservation_input.rb +281 -0
- data/lib/doorflow-api/models/revoke_token403_response.rb +156 -0
- data/lib/doorflow-api/models/role.rb +268 -0
- data/lib/doorflow-api/models/site.rb +254 -0
- data/lib/doorflow-api/models/site_site_ips_inner.rb +148 -0
- data/lib/doorflow-api/models/unlock_channel_request.rb +148 -0
- data/lib/doorflow-api/version.rb +15 -0
- data/lib/doorflow-api.rb +123 -0
- data/lib/doorflow.rb +171 -0
- data/spec/api/admission_requests_api_spec.rb +47 -0
- data/spec/api/channels_api_spec.rb +174 -0
- data/spec/api/credential_types_api_spec.rb +49 -0
- data/spec/api/group_reservations_api_spec.rb +75 -0
- data/spec/api/oauth_api_spec.rb +97 -0
- data/spec/doorflow/client_spec.rb +109 -0
- data/spec/doorflow_spec.rb +22 -0
- data/spec/fixtures/vcr_cassettes/channel/list.yml +70 -0
- data/spec/fixtures/vcr_cassettes/channel/retrieve.yml +131 -0
- data/spec/fixtures/vcr_cassettes/person/auto_pagination.yml +87 -0
- data/spec/fixtures/vcr_cassettes/person/create.yml +64 -0
- data/spec/fixtures/vcr_cassettes/person/delete.yml +125 -0
- data/spec/fixtures/vcr_cassettes/person/list.yml +90 -0
- data/spec/fixtures/vcr_cassettes/person/not_found.yml +62 -0
- data/spec/fixtures/vcr_cassettes/person/retrieve.yml +136 -0
- data/spec/fixtures/vcr_cassettes/person/update.yml +260 -0
- data/spec/fixtures/vcr_cassettes/person/validation_error.yml +62 -0
- data/spec/integration/channel_spec.rb +88 -0
- data/spec/integration/person_spec.rb +99 -0
- data/spec/models/account_passport_spec.rb +42 -0
- data/spec/models/account_reseller_spec.rb +60 -0
- data/spec/models/account_sync_spec.rb +52 -0
- data/spec/models/account_user_spec.rb +54 -0
- data/spec/models/admission_request_door_controller_spec.rb +42 -0
- data/spec/models/admission_request_person_spec.rb +42 -0
- data/spec/models/admission_request_spec.rb +82 -0
- data/spec/models/admit_channel202_response_spec.rb +46 -0
- data/spec/models/admit_person202_response_spec.rb +46 -0
- data/spec/models/admit_person403_response_spec.rb +42 -0
- data/spec/models/admit_person_request_spec.rb +36 -0
- data/spec/models/auto_unlock_channel400_response_spec.rb +42 -0
- data/spec/models/auto_unlock_channel_request_spec.rb +36 -0
- data/spec/models/channel_auto_unlock_spec.rb +42 -0
- data/spec/models/channel_lockdown_aux_lockdown_spec.rb +36 -0
- data/spec/models/channel_lockdown_card_lockdown_spec.rb +36 -0
- data/spec/models/channel_lockdown_rex_lockdown_spec.rb +36 -0
- data/spec/models/channel_lockdown_spec.rb +54 -0
- data/spec/models/channel_mode_spec.rb +52 -0
- data/spec/models/channel_sync_spec.rb +46 -0
- data/spec/models/create_credential422_response_errors_spec.rb +48 -0
- data/spec/models/create_credential422_response_spec.rb +42 -0
- data/spec/models/credential_input_person_credential_spec.rb +48 -0
- data/spec/models/credential_input_spec.rb +36 -0
- data/spec/models/credential_spec.rb +86 -0
- data/spec/models/credential_update_input_person_credential_spec.rb +36 -0
- data/spec/models/credential_update_input_spec.rb +36 -0
- data/spec/models/delete_group_reservation200_response_spec.rb +36 -0
- data/spec/models/error_spec.rb +42 -0
- data/spec/models/get_access_token200_response_spec.rb +66 -0
- data/spec/models/get_access_token400_response_spec.rb +46 -0
- data/spec/models/get_access_token401_response_spec.rb +42 -0
- data/spec/models/get_admission_request401_response_spec.rb +42 -0
- data/spec/models/get_admission_request403_response_spec.rb +42 -0
- data/spec/models/get_admission_request404_response_spec.rb +42 -0
- data/spec/models/get_admission_request500_response_spec.rb +42 -0
- data/spec/models/get_token_info200_response_application_spec.rb +36 -0
- data/spec/models/get_token_info200_response_spec.rb +66 -0
- data/spec/models/get_token_info401_response_spec.rb +42 -0
- data/spec/models/group_reservation_input_group_reservation_spec.rb +54 -0
- data/spec/models/group_reservation_input_spec.rb +36 -0
- data/spec/models/group_reservation_spec.rb +82 -0
- data/spec/models/initiate_sync429_response_spec.rb +52 -0
- data/spec/models/list_events400_response_spec.rb +42 -0
- data/spec/models/lockdown_channel_request_spec.rb +48 -0
- data/spec/models/notification_rule_actions_inner_spec.rb +48 -0
- data/spec/models/notification_rule_conditions_inner_spec.rb +48 -0
- data/spec/models/notification_rule_events_inner_spec.rb +42 -0
- data/spec/models/notification_rule_input_spec.rb +60 -0
- data/spec/models/person_input_spec.rb +180 -0
- data/spec/models/reservation_input_spec.rb +60 -0
- data/spec/models/revoke_token403_response_spec.rb +42 -0
- data/spec/models/site_site_ips_inner_spec.rb +36 -0
- data/spec/models/unlock_channel_request_spec.rb +36 -0
- data/spec/spec_helper.rb +160 -0
- metadata +495 -0
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DoorFlow API
|
|
3
|
+
|
|
4
|
+
#Access control and door management API for DoorFlow
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 3.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.18.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module DoorFlow
|
|
17
|
+
class LockdownChannelRequest < ApiModelBase
|
|
18
|
+
# Lock down card access
|
|
19
|
+
attr_accessor :card_lockdown
|
|
20
|
+
|
|
21
|
+
# Lock down REX (Request to Exit)
|
|
22
|
+
attr_accessor :rex_lockdown
|
|
23
|
+
|
|
24
|
+
# Lock down AUX inputs
|
|
25
|
+
attr_accessor :aux_lockdown
|
|
26
|
+
|
|
27
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
28
|
+
def self.attribute_map
|
|
29
|
+
{
|
|
30
|
+
:'card_lockdown' => :'card_lockdown',
|
|
31
|
+
:'rex_lockdown' => :'rex_lockdown',
|
|
32
|
+
:'aux_lockdown' => :'aux_lockdown'
|
|
33
|
+
}
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Returns attribute mapping this model knows about
|
|
37
|
+
def self.acceptable_attribute_map
|
|
38
|
+
attribute_map
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Returns all the JSON keys this model knows about
|
|
42
|
+
def self.acceptable_attributes
|
|
43
|
+
acceptable_attribute_map.values
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Attribute type mapping.
|
|
47
|
+
def self.openapi_types
|
|
48
|
+
{
|
|
49
|
+
:'card_lockdown' => :'Boolean',
|
|
50
|
+
:'rex_lockdown' => :'Boolean',
|
|
51
|
+
:'aux_lockdown' => :'Boolean'
|
|
52
|
+
}
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# List of attributes with nullable: true
|
|
56
|
+
def self.openapi_nullable
|
|
57
|
+
Set.new([
|
|
58
|
+
])
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Initializes the object
|
|
62
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
63
|
+
def initialize(attributes = {})
|
|
64
|
+
if (!attributes.is_a?(Hash))
|
|
65
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DoorFlow::LockdownChannelRequest` initialize method"
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
69
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
70
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
71
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
72
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DoorFlow::LockdownChannelRequest`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
73
|
+
end
|
|
74
|
+
h[k.to_sym] = v
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if attributes.key?(:'card_lockdown')
|
|
78
|
+
self.card_lockdown = attributes[:'card_lockdown']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes.key?(:'rex_lockdown')
|
|
82
|
+
self.rex_lockdown = attributes[:'rex_lockdown']
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
if attributes.key?(:'aux_lockdown')
|
|
86
|
+
self.aux_lockdown = attributes[:'aux_lockdown']
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
91
|
+
# @return Array for valid properties with the reasons
|
|
92
|
+
def list_invalid_properties
|
|
93
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
94
|
+
invalid_properties = Array.new
|
|
95
|
+
invalid_properties
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
# Check to see if the all the properties in the model are valid
|
|
99
|
+
# @return true if the model is valid
|
|
100
|
+
def valid?
|
|
101
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
102
|
+
true
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Checks equality by comparing each attribute.
|
|
106
|
+
# @param [Object] Object to be compared
|
|
107
|
+
def ==(o)
|
|
108
|
+
return true if self.equal?(o)
|
|
109
|
+
self.class == o.class &&
|
|
110
|
+
card_lockdown == o.card_lockdown &&
|
|
111
|
+
rex_lockdown == o.rex_lockdown &&
|
|
112
|
+
aux_lockdown == o.aux_lockdown
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# @see the `==` method
|
|
116
|
+
# @param [Object] Object to be compared
|
|
117
|
+
def eql?(o)
|
|
118
|
+
self == o
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# Calculates hash code according to all attributes.
|
|
122
|
+
# @return [Integer] Hash code
|
|
123
|
+
def hash
|
|
124
|
+
[card_lockdown, rex_lockdown, aux_lockdown].hash
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
# Builds the object from hash
|
|
128
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
129
|
+
# @return [Object] Returns the model itself
|
|
130
|
+
def self.build_from_hash(attributes)
|
|
131
|
+
return nil unless attributes.is_a?(Hash)
|
|
132
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
133
|
+
transformed_hash = {}
|
|
134
|
+
openapi_types.each_pair do |key, type|
|
|
135
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
136
|
+
transformed_hash["#{key}"] = nil
|
|
137
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
138
|
+
# check to ensure the input is an array given that the attribute
|
|
139
|
+
# is documented as an array but the input is not
|
|
140
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
141
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
142
|
+
end
|
|
143
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
144
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
new(transformed_hash)
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# Returns the object in the form of hash
|
|
151
|
+
# @return [Hash] Returns the object in the form of hash
|
|
152
|
+
def to_hash
|
|
153
|
+
hash = {}
|
|
154
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
155
|
+
value = self.send(attr)
|
|
156
|
+
if value.nil?
|
|
157
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
158
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
hash[param] = _to_hash(value)
|
|
162
|
+
end
|
|
163
|
+
hash
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
end
|
|
@@ -0,0 +1,324 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DoorFlow API
|
|
3
|
+
|
|
4
|
+
#Access control and door management API for DoorFlow
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 3.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.18.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module DoorFlow
|
|
17
|
+
class NotificationRule < ApiModelBase
|
|
18
|
+
# Unique identifier for the notification rule
|
|
19
|
+
attr_accessor :id
|
|
20
|
+
|
|
21
|
+
# Name of the notification rule
|
|
22
|
+
attr_accessor :name
|
|
23
|
+
|
|
24
|
+
# Whether this notification rule is currently active
|
|
25
|
+
attr_accessor :active
|
|
26
|
+
|
|
27
|
+
# Conditions that must be met for the rule to trigger
|
|
28
|
+
attr_accessor :conditions
|
|
29
|
+
|
|
30
|
+
# Events that trigger this rule (at least one required)
|
|
31
|
+
attr_accessor :events
|
|
32
|
+
|
|
33
|
+
# Actions to perform when the rule triggers (at least one required)
|
|
34
|
+
attr_accessor :actions
|
|
35
|
+
|
|
36
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
|
+
def self.attribute_map
|
|
38
|
+
{
|
|
39
|
+
:'id' => :'id',
|
|
40
|
+
:'name' => :'name',
|
|
41
|
+
:'active' => :'active',
|
|
42
|
+
:'conditions' => :'conditions',
|
|
43
|
+
:'events' => :'events',
|
|
44
|
+
:'actions' => :'actions'
|
|
45
|
+
}
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Returns attribute mapping this model knows about
|
|
49
|
+
def self.acceptable_attribute_map
|
|
50
|
+
attribute_map
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# Returns all the JSON keys this model knows about
|
|
54
|
+
def self.acceptable_attributes
|
|
55
|
+
acceptable_attribute_map.values
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Attribute type mapping.
|
|
59
|
+
def self.openapi_types
|
|
60
|
+
{
|
|
61
|
+
:'id' => :'Integer',
|
|
62
|
+
:'name' => :'String',
|
|
63
|
+
:'active' => :'Boolean',
|
|
64
|
+
:'conditions' => :'Array<NotificationRuleConditionsInner>',
|
|
65
|
+
:'events' => :'Array<NotificationRuleEventsInner>',
|
|
66
|
+
:'actions' => :'Array<NotificationRuleActionsInner>'
|
|
67
|
+
}
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# List of attributes with nullable: true
|
|
71
|
+
def self.openapi_nullable
|
|
72
|
+
Set.new([
|
|
73
|
+
])
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Initializes the object
|
|
77
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
78
|
+
def initialize(attributes = {})
|
|
79
|
+
if (!attributes.is_a?(Hash))
|
|
80
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DoorFlow::NotificationRule` initialize method"
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
84
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
85
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
86
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
87
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DoorFlow::NotificationRule`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
88
|
+
end
|
|
89
|
+
h[k.to_sym] = v
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if attributes.key?(:'id')
|
|
93
|
+
self.id = attributes[:'id']
|
|
94
|
+
else
|
|
95
|
+
self.id = nil
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
if attributes.key?(:'name')
|
|
99
|
+
self.name = attributes[:'name']
|
|
100
|
+
else
|
|
101
|
+
self.name = nil
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if attributes.key?(:'active')
|
|
105
|
+
self.active = attributes[:'active']
|
|
106
|
+
else
|
|
107
|
+
self.active = nil
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
if attributes.key?(:'conditions')
|
|
111
|
+
if (value = attributes[:'conditions']).is_a?(Array)
|
|
112
|
+
self.conditions = value
|
|
113
|
+
end
|
|
114
|
+
else
|
|
115
|
+
self.conditions = nil
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
if attributes.key?(:'events')
|
|
119
|
+
if (value = attributes[:'events']).is_a?(Array)
|
|
120
|
+
self.events = value
|
|
121
|
+
end
|
|
122
|
+
else
|
|
123
|
+
self.events = nil
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
if attributes.key?(:'actions')
|
|
127
|
+
if (value = attributes[:'actions']).is_a?(Array)
|
|
128
|
+
self.actions = value
|
|
129
|
+
end
|
|
130
|
+
else
|
|
131
|
+
self.actions = nil
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
136
|
+
# @return Array for valid properties with the reasons
|
|
137
|
+
def list_invalid_properties
|
|
138
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
139
|
+
invalid_properties = Array.new
|
|
140
|
+
if @id.nil?
|
|
141
|
+
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
if @name.nil?
|
|
145
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
if @active.nil?
|
|
149
|
+
invalid_properties.push('invalid value for "active", active cannot be nil.')
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
if @conditions.nil?
|
|
153
|
+
invalid_properties.push('invalid value for "conditions", conditions cannot be nil.')
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
if @events.nil?
|
|
157
|
+
invalid_properties.push('invalid value for "events", events cannot be nil.')
|
|
158
|
+
end
|
|
159
|
+
|
|
160
|
+
if @events.length < 1
|
|
161
|
+
invalid_properties.push('invalid value for "events", number of items must be greater than or equal to 1.')
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
if @actions.nil?
|
|
165
|
+
invalid_properties.push('invalid value for "actions", actions cannot be nil.')
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
if @actions.length < 1
|
|
169
|
+
invalid_properties.push('invalid value for "actions", number of items must be greater than or equal to 1.')
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
invalid_properties
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
# Check to see if the all the properties in the model are valid
|
|
176
|
+
# @return true if the model is valid
|
|
177
|
+
def valid?
|
|
178
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
179
|
+
return false if @id.nil?
|
|
180
|
+
return false if @name.nil?
|
|
181
|
+
return false if @active.nil?
|
|
182
|
+
return false if @conditions.nil?
|
|
183
|
+
return false if @events.nil?
|
|
184
|
+
return false if @events.length < 1
|
|
185
|
+
return false if @actions.nil?
|
|
186
|
+
return false if @actions.length < 1
|
|
187
|
+
true
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
# Custom attribute writer method with validation
|
|
191
|
+
# @param [Object] id Value to be assigned
|
|
192
|
+
def id=(id)
|
|
193
|
+
if id.nil?
|
|
194
|
+
fail ArgumentError, 'id cannot be nil'
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
@id = id
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# Custom attribute writer method with validation
|
|
201
|
+
# @param [Object] name Value to be assigned
|
|
202
|
+
def name=(name)
|
|
203
|
+
if name.nil?
|
|
204
|
+
fail ArgumentError, 'name cannot be nil'
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
@name = name
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
# Custom attribute writer method with validation
|
|
211
|
+
# @param [Object] active Value to be assigned
|
|
212
|
+
def active=(active)
|
|
213
|
+
if active.nil?
|
|
214
|
+
fail ArgumentError, 'active cannot be nil'
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
@active = active
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
# Custom attribute writer method with validation
|
|
221
|
+
# @param [Object] conditions Value to be assigned
|
|
222
|
+
def conditions=(conditions)
|
|
223
|
+
if conditions.nil?
|
|
224
|
+
fail ArgumentError, 'conditions cannot be nil'
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
@conditions = conditions
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
# Custom attribute writer method with validation
|
|
231
|
+
# @param [Object] events Value to be assigned
|
|
232
|
+
def events=(events)
|
|
233
|
+
if events.nil?
|
|
234
|
+
fail ArgumentError, 'events cannot be nil'
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
if events.length < 1
|
|
238
|
+
fail ArgumentError, 'invalid value for "events", number of items must be greater than or equal to 1.'
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
@events = events
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
# Custom attribute writer method with validation
|
|
245
|
+
# @param [Object] actions Value to be assigned
|
|
246
|
+
def actions=(actions)
|
|
247
|
+
if actions.nil?
|
|
248
|
+
fail ArgumentError, 'actions cannot be nil'
|
|
249
|
+
end
|
|
250
|
+
|
|
251
|
+
if actions.length < 1
|
|
252
|
+
fail ArgumentError, 'invalid value for "actions", number of items must be greater than or equal to 1.'
|
|
253
|
+
end
|
|
254
|
+
|
|
255
|
+
@actions = actions
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
# Checks equality by comparing each attribute.
|
|
259
|
+
# @param [Object] Object to be compared
|
|
260
|
+
def ==(o)
|
|
261
|
+
return true if self.equal?(o)
|
|
262
|
+
self.class == o.class &&
|
|
263
|
+
id == o.id &&
|
|
264
|
+
name == o.name &&
|
|
265
|
+
active == o.active &&
|
|
266
|
+
conditions == o.conditions &&
|
|
267
|
+
events == o.events &&
|
|
268
|
+
actions == o.actions
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
# @see the `==` method
|
|
272
|
+
# @param [Object] Object to be compared
|
|
273
|
+
def eql?(o)
|
|
274
|
+
self == o
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
# Calculates hash code according to all attributes.
|
|
278
|
+
# @return [Integer] Hash code
|
|
279
|
+
def hash
|
|
280
|
+
[id, name, active, conditions, events, actions].hash
|
|
281
|
+
end
|
|
282
|
+
|
|
283
|
+
# Builds the object from hash
|
|
284
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
285
|
+
# @return [Object] Returns the model itself
|
|
286
|
+
def self.build_from_hash(attributes)
|
|
287
|
+
return nil unless attributes.is_a?(Hash)
|
|
288
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
289
|
+
transformed_hash = {}
|
|
290
|
+
openapi_types.each_pair do |key, type|
|
|
291
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
292
|
+
transformed_hash["#{key}"] = nil
|
|
293
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
294
|
+
# check to ensure the input is an array given that the attribute
|
|
295
|
+
# is documented as an array but the input is not
|
|
296
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
297
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
298
|
+
end
|
|
299
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
300
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
301
|
+
end
|
|
302
|
+
end
|
|
303
|
+
new(transformed_hash)
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
# Returns the object in the form of hash
|
|
307
|
+
# @return [Hash] Returns the object in the form of hash
|
|
308
|
+
def to_hash
|
|
309
|
+
hash = {}
|
|
310
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
311
|
+
value = self.send(attr)
|
|
312
|
+
if value.nil?
|
|
313
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
314
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
315
|
+
end
|
|
316
|
+
|
|
317
|
+
hash[param] = _to_hash(value)
|
|
318
|
+
end
|
|
319
|
+
hash
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
end
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#DoorFlow API
|
|
3
|
+
|
|
4
|
+
#Access control and door management API for DoorFlow
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 3.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.18.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module DoorFlow
|
|
17
|
+
class NotificationRuleActionsInner < ApiModelBase
|
|
18
|
+
# Type of action (0 = webhook callback)
|
|
19
|
+
attr_accessor :type
|
|
20
|
+
|
|
21
|
+
# Human-readable description of the action type
|
|
22
|
+
attr_accessor :type_description
|
|
23
|
+
|
|
24
|
+
# Action data (e.g., webhook URL)
|
|
25
|
+
attr_accessor :data
|
|
26
|
+
|
|
27
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
28
|
+
def self.attribute_map
|
|
29
|
+
{
|
|
30
|
+
:'type' => :'type',
|
|
31
|
+
:'type_description' => :'type_description',
|
|
32
|
+
:'data' => :'data'
|
|
33
|
+
}
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
# Returns attribute mapping this model knows about
|
|
37
|
+
def self.acceptable_attribute_map
|
|
38
|
+
attribute_map
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Returns all the JSON keys this model knows about
|
|
42
|
+
def self.acceptable_attributes
|
|
43
|
+
acceptable_attribute_map.values
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Attribute type mapping.
|
|
47
|
+
def self.openapi_types
|
|
48
|
+
{
|
|
49
|
+
:'type' => :'Integer',
|
|
50
|
+
:'type_description' => :'String',
|
|
51
|
+
:'data' => :'String'
|
|
52
|
+
}
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# List of attributes with nullable: true
|
|
56
|
+
def self.openapi_nullable
|
|
57
|
+
Set.new([
|
|
58
|
+
])
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Initializes the object
|
|
62
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
63
|
+
def initialize(attributes = {})
|
|
64
|
+
if (!attributes.is_a?(Hash))
|
|
65
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DoorFlow::NotificationRuleActionsInner` initialize method"
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
69
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
70
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
71
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
72
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `DoorFlow::NotificationRuleActionsInner`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
73
|
+
end
|
|
74
|
+
h[k.to_sym] = v
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
if attributes.key?(:'type')
|
|
78
|
+
self.type = attributes[:'type']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes.key?(:'type_description')
|
|
82
|
+
self.type_description = attributes[:'type_description']
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
if attributes.key?(:'data')
|
|
86
|
+
self.data = attributes[:'data']
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
91
|
+
# @return Array for valid properties with the reasons
|
|
92
|
+
def list_invalid_properties
|
|
93
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
94
|
+
invalid_properties = Array.new
|
|
95
|
+
invalid_properties
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
# Check to see if the all the properties in the model are valid
|
|
99
|
+
# @return true if the model is valid
|
|
100
|
+
def valid?
|
|
101
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
102
|
+
true
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Checks equality by comparing each attribute.
|
|
106
|
+
# @param [Object] Object to be compared
|
|
107
|
+
def ==(o)
|
|
108
|
+
return true if self.equal?(o)
|
|
109
|
+
self.class == o.class &&
|
|
110
|
+
type == o.type &&
|
|
111
|
+
type_description == o.type_description &&
|
|
112
|
+
data == o.data
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# @see the `==` method
|
|
116
|
+
# @param [Object] Object to be compared
|
|
117
|
+
def eql?(o)
|
|
118
|
+
self == o
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# Calculates hash code according to all attributes.
|
|
122
|
+
# @return [Integer] Hash code
|
|
123
|
+
def hash
|
|
124
|
+
[type, type_description, data].hash
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
# Builds the object from hash
|
|
128
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
129
|
+
# @return [Object] Returns the model itself
|
|
130
|
+
def self.build_from_hash(attributes)
|
|
131
|
+
return nil unless attributes.is_a?(Hash)
|
|
132
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
133
|
+
transformed_hash = {}
|
|
134
|
+
openapi_types.each_pair do |key, type|
|
|
135
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
|
136
|
+
transformed_hash["#{key}"] = nil
|
|
137
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
138
|
+
# check to ensure the input is an array given that the attribute
|
|
139
|
+
# is documented as an array but the input is not
|
|
140
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
|
141
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
|
142
|
+
end
|
|
143
|
+
elsif !attributes[attribute_map[key]].nil?
|
|
144
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
|
145
|
+
end
|
|
146
|
+
end
|
|
147
|
+
new(transformed_hash)
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# Returns the object in the form of hash
|
|
151
|
+
# @return [Hash] Returns the object in the form of hash
|
|
152
|
+
def to_hash
|
|
153
|
+
hash = {}
|
|
154
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
155
|
+
value = self.send(attr)
|
|
156
|
+
if value.nil?
|
|
157
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
158
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
hash[param] = _to_hash(value)
|
|
162
|
+
end
|
|
163
|
+
hash
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
end
|