lithic 0.15.0 → 0.16.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 +26 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +4 -0
- data/lib/lithic/internal/transport/base_client.rb +4 -1
- data/lib/lithic/models/account.rb +2 -2
- data/lib/lithic/models/account_holders/account_holder_entity.rb +3 -16
- data/lib/lithic/models/account_holders/entity_create_params.rb +3 -14
- data/lib/lithic/models/auth_rules/auth_rule.rb +4 -2
- data/lib/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rb +18 -20
- data/lib/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rb +195 -9
- data/lib/lithic/models/auth_rules/rule_feature.rb +29 -6
- data/lib/lithic/models/auth_rules/typescript_code_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/v2_create_params.rb +12 -6
- data/lib/lithic/models/card.rb +1 -1
- data/lib/lithic/models/card_authorization.rb +117 -11
- data/lib/lithic/models/financial_accounts/loan_tape.rb +9 -1
- data/lib/lithic/models/payment.rb +13 -1
- data/lib/lithic/models/transaction_monitoring/case_activity_entry.rb +74 -0
- data/lib/lithic/models/transaction_monitoring/case_activity_type.rb +35 -0
- data/lib/lithic/models/transaction_monitoring/case_card.rb +37 -0
- data/lib/lithic/models/transaction_monitoring/case_entity.rb +50 -0
- data/lib/lithic/models/transaction_monitoring/case_list_activity_params.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_list_params.rb +136 -0
- data/lib/lithic/models/transaction_monitoring/case_list_transactions_params.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_priority.rb +20 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_cards_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_cards_response.rb +11 -0
- data/lib/lithic/models/transaction_monitoring/case_retrieve_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/case_sort_order.rb +29 -0
- data/lib/lithic/models/transaction_monitoring/case_status.rb +31 -0
- data/lib/lithic/models/transaction_monitoring/case_transaction.rb +53 -0
- data/lib/lithic/models/transaction_monitoring/case_update_params.rb +116 -0
- data/lib/lithic/models/transaction_monitoring/cases/case_file.rb +141 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_create_params.rb +47 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_delete_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/comment_update_params.rb +54 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_create_params.rb +33 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_delete_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_list_params.rb +54 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_retrieve_params.rb +30 -0
- data/lib/lithic/models/transaction_monitoring/cases/file_status.rb +26 -0
- data/lib/lithic/models/transaction_monitoring/cases/upload_constraints.rb +31 -0
- data/lib/lithic/models/transaction_monitoring/entity_type.rb +18 -0
- data/lib/lithic/models/transaction_monitoring/monitoring_case.rb +168 -0
- data/lib/lithic/models/transaction_monitoring/queue.rb +120 -0
- data/lib/lithic/models/transaction_monitoring/queue_create_params.rb +32 -0
- data/lib/lithic/models/transaction_monitoring/queue_delete_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/queue_list_params.rb +45 -0
- data/lib/lithic/models/transaction_monitoring/queue_retrieve_params.rb +22 -0
- data/lib/lithic/models/transaction_monitoring/queue_update_params.rb +39 -0
- data/lib/lithic/models/transaction_monitoring/resolution_outcome.rb +28 -0
- data/lib/lithic/models/transaction_route_params.rb +29 -0
- data/lib/lithic/models.rb +4 -0
- data/lib/lithic/resources/account_holders/entities.rb +1 -1
- data/lib/lithic/resources/cards.rb +2 -2
- data/lib/lithic/resources/transaction_monitoring/cases/comments.rb +111 -0
- data/lib/lithic/resources/transaction_monitoring/cases/files.rb +131 -0
- data/lib/lithic/resources/transaction_monitoring/cases.rb +228 -0
- data/lib/lithic/resources/transaction_monitoring/queues.rb +137 -0
- data/lib/lithic/resources/transaction_monitoring.rb +22 -0
- data/lib/lithic/resources/transactions.rb +25 -0
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +40 -0
- data/rbi/lithic/client.rbi +3 -0
- data/rbi/lithic/models/account.rbi +3 -3
- data/rbi/lithic/models/account_holders/account_holder_entity.rbi +3 -40
- data/rbi/lithic/models/account_holders/entity_create_params.rbi +3 -37
- data/rbi/lithic/models/auth_rules/auth_rule.rbi +6 -3
- data/rbi/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rbi +29 -29
- data/rbi/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rbi +395 -12
- data/rbi/lithic/models/auth_rules/rule_feature.rbi +41 -5
- data/rbi/lithic/models/auth_rules/typescript_code_parameters.rbi +3 -0
- data/rbi/lithic/models/auth_rules/v2_create_params.rbi +18 -9
- data/rbi/lithic/models/card.rbi +2 -2
- data/rbi/lithic/models/card_authorization.rbi +246 -17
- data/rbi/lithic/models/financial_accounts/loan_tape.rbi +8 -0
- data/rbi/lithic/models/payment.rbi +13 -0
- data/rbi/lithic/models/transaction_monitoring/case_activity_entry.rbi +107 -0
- data/rbi/lithic/models/transaction_monitoring/case_activity_type.rbi +84 -0
- data/rbi/lithic/models/transaction_monitoring/case_card.rbi +60 -0
- data/rbi/lithic/models/transaction_monitoring/case_entity.rbi +101 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_activity_params.rbi +83 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_params.rbi +220 -0
- data/rbi/lithic/models/transaction_monitoring/case_list_transactions_params.rbi +83 -0
- data/rbi/lithic/models/transaction_monitoring/case_priority.rbi +44 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_cards_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_cards_response.rbi +15 -0
- data/rbi/lithic/models/transaction_monitoring/case_retrieve_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/case_sort_order.rbi +64 -0
- data/rbi/lithic/models/transaction_monitoring/case_status.rbi +63 -0
- data/rbi/lithic/models/transaction_monitoring/case_transaction.rbi +75 -0
- data/rbi/lithic/models/transaction_monitoring/case_update_params.rbi +201 -0
- data/rbi/lithic/models/transaction_monitoring/cases/case_file.rbi +188 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_create_params.rbi +71 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_delete_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/comment_update_params.rbi +77 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_create_params.rbi +56 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_delete_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_list_params.rbi +85 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_retrieve_params.rbi +50 -0
- data/rbi/lithic/models/transaction_monitoring/cases/file_status.rbi +51 -0
- data/rbi/lithic/models/transaction_monitoring/cases/upload_constraints.rbi +51 -0
- data/rbi/lithic/models/transaction_monitoring/entity_type.rbi +37 -0
- data/rbi/lithic/models/transaction_monitoring/monitoring_case.rbi +226 -0
- data/rbi/lithic/models/transaction_monitoring/queue.rbi +189 -0
- data/rbi/lithic/models/transaction_monitoring/queue_create_params.rbi +56 -0
- data/rbi/lithic/models/transaction_monitoring/queue_delete_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/queue_list_params.rbi +77 -0
- data/rbi/lithic/models/transaction_monitoring/queue_retrieve_params.rbi +40 -0
- data/rbi/lithic/models/transaction_monitoring/queue_update_params.rbi +65 -0
- data/rbi/lithic/models/transaction_monitoring/resolution_outcome.rbi +61 -0
- data/rbi/lithic/models/transaction_route_params.rbi +49 -0
- data/rbi/lithic/models.rbi +4 -0
- data/rbi/lithic/resources/account_holders/entities.rbi +1 -1
- data/rbi/lithic/resources/cards.rbi +2 -2
- data/rbi/lithic/resources/transaction_monitoring/cases/comments.rbi +81 -0
- data/rbi/lithic/resources/transaction_monitoring/cases/files.rbi +98 -0
- data/rbi/lithic/resources/transaction_monitoring/cases.rbi +230 -0
- data/rbi/lithic/resources/transaction_monitoring/queues.rbi +103 -0
- data/rbi/lithic/resources/transaction_monitoring.rbi +18 -0
- data/rbi/lithic/resources/transactions.rbi +18 -0
- data/sig/lithic/client.rbs +2 -0
- data/sig/lithic/models/account_holders/account_holder_entity.rbs +4 -15
- data/sig/lithic/models/account_holders/entity_create_params.rbs +4 -15
- data/sig/lithic/models/auth_rules/conditional_authorization_adjustment_parameters.rbs +16 -16
- data/sig/lithic/models/auth_rules/conditional_card_transaction_update_action_parameters.rbs +73 -3
- data/sig/lithic/models/auth_rules/rule_feature.rbs +16 -0
- data/sig/lithic/models/card_authorization.rbs +84 -10
- data/sig/lithic/models/financial_accounts/loan_tape.rbs +5 -0
- data/sig/lithic/models/payment.rbs +7 -0
- data/sig/lithic/models/transaction_monitoring/case_activity_entry.rbs +47 -0
- data/sig/lithic/models/transaction_monitoring/case_activity_type.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/case_card.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/case_entity.rbs +38 -0
- data/sig/lithic/models/transaction_monitoring/case_list_activity_params.rbs +49 -0
- data/sig/lithic/models/transaction_monitoring/case_list_params.rbs +125 -0
- data/sig/lithic/models/transaction_monitoring/case_list_transactions_params.rbs +49 -0
- data/sig/lithic/models/transaction_monitoring/case_priority.rbs +18 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_cards_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_cards_response.rbs +10 -0
- data/sig/lithic/models/transaction_monitoring/case_retrieve_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/case_sort_order.rbs +26 -0
- data/sig/lithic/models/transaction_monitoring/case_status.rbs +21 -0
- data/sig/lithic/models/transaction_monitoring/case_transaction.rbs +42 -0
- data/sig/lithic/models/transaction_monitoring/case_update_params.rbs +91 -0
- data/sig/lithic/models/transaction_monitoring/cases/case_file.rbs +86 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_create_params.rbs +38 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_delete_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/comment_update_params.rbs +47 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_create_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_delete_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_list_params.rbs +51 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_retrieve_params.rbs +32 -0
- data/sig/lithic/models/transaction_monitoring/cases/file_status.rbs +19 -0
- data/sig/lithic/models/transaction_monitoring/cases/upload_constraints.rbs +26 -0
- data/sig/lithic/models/transaction_monitoring/entity_type.rbs +16 -0
- data/sig/lithic/models/transaction_monitoring/monitoring_case.rbs +102 -0
- data/sig/lithic/models/transaction_monitoring/queue.rbs +101 -0
- data/sig/lithic/models/transaction_monitoring/queue_create_params.rbs +30 -0
- data/sig/lithic/models/transaction_monitoring/queue_delete_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/queue_list_params.rbs +40 -0
- data/sig/lithic/models/transaction_monitoring/queue_retrieve_params.rbs +25 -0
- data/sig/lithic/models/transaction_monitoring/queue_update_params.rbs +36 -0
- data/sig/lithic/models/transaction_monitoring/resolution_outcome.rbs +24 -0
- data/sig/lithic/models/transaction_route_params.rbs +28 -0
- data/sig/lithic/models.rbs +4 -0
- data/sig/lithic/resources/account_holders/entities.rbs +1 -1
- data/sig/lithic/resources/transaction_monitoring/cases/comments.rbs +32 -0
- data/sig/lithic/resources/transaction_monitoring/cases/files.rbs +37 -0
- data/sig/lithic/resources/transaction_monitoring/cases.rbs +71 -0
- data/sig/lithic/resources/transaction_monitoring/queues.rbs +39 -0
- data/sig/lithic/resources/transaction_monitoring.rbs +11 -0
- data/sig/lithic/resources/transactions.rbs +6 -0
- metadata +122 -2
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Comments#create
|
|
8
|
+
class CommentCreateParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute comment
|
|
18
|
+
# Text of the comment
|
|
19
|
+
#
|
|
20
|
+
# @return [String]
|
|
21
|
+
required :comment, String
|
|
22
|
+
|
|
23
|
+
# @!attribute actor_token
|
|
24
|
+
# Optional client-provided identifier for the actor performing this action,
|
|
25
|
+
# recorded on the resulting activity entry. This value is supplied by the client
|
|
26
|
+
# (for example, your own internal user ID) and is not authenticated by Lithic
|
|
27
|
+
#
|
|
28
|
+
# @return [String, nil]
|
|
29
|
+
optional :actor_token, String
|
|
30
|
+
|
|
31
|
+
# @!method initialize(case_token:, comment:, actor_token: nil, request_options: {})
|
|
32
|
+
# Some parameter documentations has been truncated, see
|
|
33
|
+
# {Lithic::Models::TransactionMonitoring::Cases::CommentCreateParams} for more
|
|
34
|
+
# details.
|
|
35
|
+
#
|
|
36
|
+
# @param case_token [String]
|
|
37
|
+
#
|
|
38
|
+
# @param comment [String] Text of the comment
|
|
39
|
+
#
|
|
40
|
+
# @param actor_token [String] Optional client-provided identifier for the actor performing this action,
|
|
41
|
+
#
|
|
42
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Comments#delete
|
|
8
|
+
class CommentDeleteParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute comment_token
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
required :comment_token, String
|
|
21
|
+
|
|
22
|
+
# @!method initialize(case_token:, comment_token:, request_options: {})
|
|
23
|
+
# @param case_token [String]
|
|
24
|
+
# @param comment_token [String]
|
|
25
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Comments#update
|
|
8
|
+
class CommentUpdateParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute comment_token
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
required :comment_token, String
|
|
21
|
+
|
|
22
|
+
# @!attribute comment
|
|
23
|
+
# New text of the comment
|
|
24
|
+
#
|
|
25
|
+
# @return [String]
|
|
26
|
+
required :comment, String
|
|
27
|
+
|
|
28
|
+
# @!attribute actor_token
|
|
29
|
+
# Optional client-provided identifier for the actor performing this action,
|
|
30
|
+
# recorded on the resulting activity entry. This value is supplied by the client
|
|
31
|
+
# (for example, your own internal user ID) and is not authenticated by Lithic
|
|
32
|
+
#
|
|
33
|
+
# @return [String, nil]
|
|
34
|
+
optional :actor_token, String
|
|
35
|
+
|
|
36
|
+
# @!method initialize(case_token:, comment_token:, comment:, actor_token: nil, request_options: {})
|
|
37
|
+
# Some parameter documentations has been truncated, see
|
|
38
|
+
# {Lithic::Models::TransactionMonitoring::Cases::CommentUpdateParams} for more
|
|
39
|
+
# details.
|
|
40
|
+
#
|
|
41
|
+
# @param case_token [String]
|
|
42
|
+
#
|
|
43
|
+
# @param comment_token [String]
|
|
44
|
+
#
|
|
45
|
+
# @param comment [String] New text of the comment
|
|
46
|
+
#
|
|
47
|
+
# @param actor_token [String] Optional client-provided identifier for the actor performing this action,
|
|
48
|
+
#
|
|
49
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Files#create
|
|
8
|
+
class FileCreateParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute name
|
|
18
|
+
# Name of the file to upload
|
|
19
|
+
#
|
|
20
|
+
# @return [String]
|
|
21
|
+
required :name, String
|
|
22
|
+
|
|
23
|
+
# @!method initialize(case_token:, name:, request_options: {})
|
|
24
|
+
# @param case_token [String]
|
|
25
|
+
#
|
|
26
|
+
# @param name [String] Name of the file to upload
|
|
27
|
+
#
|
|
28
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Files#delete
|
|
8
|
+
class FileDeleteParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute file_token
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
required :file_token, String
|
|
21
|
+
|
|
22
|
+
# @!method initialize(case_token:, file_token:, request_options: {})
|
|
23
|
+
# @param case_token [String]
|
|
24
|
+
# @param file_token [String]
|
|
25
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Files#list
|
|
8
|
+
class FileListParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute ending_before
|
|
18
|
+
# A cursor representing an item's token before which a page of results should end.
|
|
19
|
+
# Used to retrieve the previous page of results before this item.
|
|
20
|
+
#
|
|
21
|
+
# @return [String, nil]
|
|
22
|
+
optional :ending_before, String
|
|
23
|
+
|
|
24
|
+
# @!attribute page_size
|
|
25
|
+
# Page size (for pagination).
|
|
26
|
+
#
|
|
27
|
+
# @return [Integer, nil]
|
|
28
|
+
optional :page_size, Integer
|
|
29
|
+
|
|
30
|
+
# @!attribute starting_after
|
|
31
|
+
# A cursor representing an item's token after which a page of results should
|
|
32
|
+
# begin. Used to retrieve the next page of results after this item.
|
|
33
|
+
#
|
|
34
|
+
# @return [String, nil]
|
|
35
|
+
optional :starting_after, String
|
|
36
|
+
|
|
37
|
+
# @!method initialize(case_token:, ending_before: nil, page_size: nil, starting_after: nil, request_options: {})
|
|
38
|
+
# Some parameter documentations has been truncated, see
|
|
39
|
+
# {Lithic::Models::TransactionMonitoring::Cases::FileListParams} for more details.
|
|
40
|
+
#
|
|
41
|
+
# @param case_token [String]
|
|
42
|
+
#
|
|
43
|
+
# @param ending_before [String] A cursor representing an item's token before which a page of results should end.
|
|
44
|
+
#
|
|
45
|
+
# @param page_size [Integer] Page size (for pagination).
|
|
46
|
+
#
|
|
47
|
+
# @param starting_after [String] A cursor representing an item's token after which a page of results should begin
|
|
48
|
+
#
|
|
49
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases::Files#retrieve
|
|
8
|
+
class FileRetrieveParams < Lithic::Internal::Type::BaseModel
|
|
9
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
10
|
+
include Lithic::Internal::Type::RequestParameters
|
|
11
|
+
|
|
12
|
+
# @!attribute case_token
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :case_token, String
|
|
16
|
+
|
|
17
|
+
# @!attribute file_token
|
|
18
|
+
#
|
|
19
|
+
# @return [String]
|
|
20
|
+
required :file_token, String
|
|
21
|
+
|
|
22
|
+
# @!method initialize(case_token:, file_token:, request_options: {})
|
|
23
|
+
# @param case_token [String]
|
|
24
|
+
# @param file_token [String]
|
|
25
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
# Lifecycle status of a case file:
|
|
8
|
+
#
|
|
9
|
+
# - `PENDING` - An upload URL has been issued and the file is awaiting upload
|
|
10
|
+
# - `READY` - The file has been uploaded and validated; a download URL is
|
|
11
|
+
# available
|
|
12
|
+
# - `REJECTED` - File validation failed; see `failure_reason` for details
|
|
13
|
+
module FileStatus
|
|
14
|
+
extend Lithic::Internal::Type::Enum
|
|
15
|
+
|
|
16
|
+
PENDING = :PENDING
|
|
17
|
+
READY = :READY
|
|
18
|
+
REJECTED = :REJECTED
|
|
19
|
+
|
|
20
|
+
# @!method self.values
|
|
21
|
+
# @return [Array<Symbol>]
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
module Cases
|
|
7
|
+
class UploadConstraints < Lithic::Internal::Type::BaseModel
|
|
8
|
+
# @!attribute accepted_mime_types
|
|
9
|
+
# MIME types accepted for the upload
|
|
10
|
+
#
|
|
11
|
+
# @return [Array<String>]
|
|
12
|
+
required :accepted_mime_types, Lithic::Internal::Type::ArrayOf[String]
|
|
13
|
+
|
|
14
|
+
# @!attribute max_size_bytes
|
|
15
|
+
# Maximum accepted file size, in bytes
|
|
16
|
+
#
|
|
17
|
+
# @return [Integer]
|
|
18
|
+
required :max_size_bytes, Integer
|
|
19
|
+
|
|
20
|
+
# @!method initialize(accepted_mime_types:, max_size_bytes:)
|
|
21
|
+
# Constraints applied to a file upload, returned alongside the upload URL so
|
|
22
|
+
# clients can validate before uploading
|
|
23
|
+
#
|
|
24
|
+
# @param accepted_mime_types [Array<String>] MIME types accepted for the upload
|
|
25
|
+
#
|
|
26
|
+
# @param max_size_bytes [Integer] Maximum accepted file size, in bytes
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
# The type of entity associated with an account holder
|
|
7
|
+
module EntityType
|
|
8
|
+
extend Lithic::Internal::Type::Enum
|
|
9
|
+
|
|
10
|
+
BENEFICIAL_OWNER_INDIVIDUAL = :BENEFICIAL_OWNER_INDIVIDUAL
|
|
11
|
+
CONTROL_PERSON = :CONTROL_PERSON
|
|
12
|
+
|
|
13
|
+
# @!method self.values
|
|
14
|
+
# @return [Array<Symbol>]
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
# @see Lithic::Resources::TransactionMonitoring::Cases#retrieve
|
|
7
|
+
class MonitoringCase < Lithic::Internal::Type::BaseModel
|
|
8
|
+
# @!attribute token
|
|
9
|
+
# Globally unique identifier for the case
|
|
10
|
+
#
|
|
11
|
+
# @return [String]
|
|
12
|
+
required :token, String
|
|
13
|
+
|
|
14
|
+
# @!attribute assignee
|
|
15
|
+
# Identifier of the user the case is currently assigned to
|
|
16
|
+
#
|
|
17
|
+
# @return [String, nil]
|
|
18
|
+
required :assignee, String, nil?: true
|
|
19
|
+
|
|
20
|
+
# @!attribute collection_stopped
|
|
21
|
+
# Date and time at which transaction collection stopped for the case
|
|
22
|
+
#
|
|
23
|
+
# @return [Time, nil]
|
|
24
|
+
required :collection_stopped, Time, nil?: true
|
|
25
|
+
|
|
26
|
+
# @!attribute created
|
|
27
|
+
# Date and time at which the case was created
|
|
28
|
+
#
|
|
29
|
+
# @return [Time]
|
|
30
|
+
required :created, Time
|
|
31
|
+
|
|
32
|
+
# @!attribute entity
|
|
33
|
+
# The entity a case is associated with
|
|
34
|
+
#
|
|
35
|
+
# @return [Lithic::Models::TransactionMonitoring::CaseEntity, nil]
|
|
36
|
+
required :entity, -> { Lithic::TransactionMonitoring::CaseEntity }, nil?: true
|
|
37
|
+
|
|
38
|
+
# @!attribute pending_transactions
|
|
39
|
+
# Whether the case still has transaction scopes pending resolution
|
|
40
|
+
#
|
|
41
|
+
# @return [Boolean]
|
|
42
|
+
required :pending_transactions, Lithic::Internal::Type::Boolean
|
|
43
|
+
|
|
44
|
+
# @!attribute priority
|
|
45
|
+
# Priority level of a case, controlling queue ordering and SLA urgency
|
|
46
|
+
#
|
|
47
|
+
# @return [Symbol, Lithic::Models::TransactionMonitoring::CasePriority]
|
|
48
|
+
required :priority, enum: -> { Lithic::TransactionMonitoring::CasePriority }
|
|
49
|
+
|
|
50
|
+
# @!attribute queue_token
|
|
51
|
+
# Token of the queue the case belongs to
|
|
52
|
+
#
|
|
53
|
+
# @return [String]
|
|
54
|
+
required :queue_token, String
|
|
55
|
+
|
|
56
|
+
# @!attribute resolution
|
|
57
|
+
# Outcome recorded when a case is resolved:
|
|
58
|
+
#
|
|
59
|
+
# - `CONFIRMED_FRAUD` - The reviewed activity was confirmed to be fraudulent
|
|
60
|
+
# - `SUSPICIOUS_ACTIVITY` - The activity is suspicious but not confirmed fraud
|
|
61
|
+
# - `FALSE_POSITIVE` - The activity was legitimate and the alert was a false
|
|
62
|
+
# positive
|
|
63
|
+
# - `NO_ACTION_REQUIRED` - No further action is required
|
|
64
|
+
# - `ESCALATED_EXTERNAL` - The case was escalated to an external party
|
|
65
|
+
#
|
|
66
|
+
# @return [Symbol, Lithic::Models::TransactionMonitoring::ResolutionOutcome, nil]
|
|
67
|
+
required :resolution, enum: -> { Lithic::TransactionMonitoring::ResolutionOutcome }, nil?: true
|
|
68
|
+
|
|
69
|
+
# @!attribute resolution_notes
|
|
70
|
+
# Free-form notes describing the resolution
|
|
71
|
+
#
|
|
72
|
+
# @return [String, nil]
|
|
73
|
+
required :resolution_notes, String, nil?: true
|
|
74
|
+
|
|
75
|
+
# @!attribute resolved
|
|
76
|
+
# Date and time at which the case was resolved
|
|
77
|
+
#
|
|
78
|
+
# @return [Time, nil]
|
|
79
|
+
required :resolved, Time, nil?: true
|
|
80
|
+
|
|
81
|
+
# @!attribute rule_token
|
|
82
|
+
# Token of the transaction monitoring rule that triggered the case
|
|
83
|
+
#
|
|
84
|
+
# @return [String, nil]
|
|
85
|
+
required :rule_token, String, nil?: true
|
|
86
|
+
|
|
87
|
+
# @!attribute sla_deadline
|
|
88
|
+
# Deadline by which the case is expected to be resolved
|
|
89
|
+
#
|
|
90
|
+
# @return [Time, nil]
|
|
91
|
+
required :sla_deadline, Time, nil?: true
|
|
92
|
+
|
|
93
|
+
# @!attribute status
|
|
94
|
+
# Status of a case as it progresses through the review workflow:
|
|
95
|
+
#
|
|
96
|
+
# - `OPEN` - The case has been created and is still collecting matching
|
|
97
|
+
# transactions
|
|
98
|
+
# - `ASSIGNED` - An analyst has been assigned and transaction collection has
|
|
99
|
+
# stopped
|
|
100
|
+
# - `IN_REVIEW` - The case is actively being investigated
|
|
101
|
+
# - `ESCALATED` - The case has been reviewed and requires additional oversight
|
|
102
|
+
# - `RESOLVED` - A determination has been made and a resolution recorded
|
|
103
|
+
# - `CLOSED` - The case is finalized
|
|
104
|
+
#
|
|
105
|
+
# @return [Symbol, Lithic::Models::TransactionMonitoring::CaseStatus]
|
|
106
|
+
required :status, enum: -> { Lithic::TransactionMonitoring::CaseStatus }
|
|
107
|
+
|
|
108
|
+
# @!attribute tags
|
|
109
|
+
# Arbitrary key-value metadata associated with the case
|
|
110
|
+
#
|
|
111
|
+
# @return [Hash{Symbol=>String}]
|
|
112
|
+
required :tags, Lithic::Internal::Type::HashOf[String]
|
|
113
|
+
|
|
114
|
+
# @!attribute title
|
|
115
|
+
# Short, human-readable summary of the case
|
|
116
|
+
#
|
|
117
|
+
# @return [String, nil]
|
|
118
|
+
required :title, String, nil?: true
|
|
119
|
+
|
|
120
|
+
# @!attribute updated
|
|
121
|
+
# Date and time at which the case was last updated
|
|
122
|
+
#
|
|
123
|
+
# @return [Time]
|
|
124
|
+
required :updated, Time
|
|
125
|
+
|
|
126
|
+
# @!method initialize(token:, assignee:, collection_stopped:, created:, entity:, pending_transactions:, priority:, queue_token:, resolution:, resolution_notes:, resolved:, rule_token:, sla_deadline:, status:, tags:, title:, updated:)
|
|
127
|
+
# Some parameter documentations has been truncated, see
|
|
128
|
+
# {Lithic::Models::TransactionMonitoring::MonitoringCase} for more details.
|
|
129
|
+
#
|
|
130
|
+
# A transaction monitoring case
|
|
131
|
+
#
|
|
132
|
+
# @param token [String] Globally unique identifier for the case
|
|
133
|
+
#
|
|
134
|
+
# @param assignee [String, nil] Identifier of the user the case is currently assigned to
|
|
135
|
+
#
|
|
136
|
+
# @param collection_stopped [Time, nil] Date and time at which transaction collection stopped for the case
|
|
137
|
+
#
|
|
138
|
+
# @param created [Time] Date and time at which the case was created
|
|
139
|
+
#
|
|
140
|
+
# @param entity [Lithic::Models::TransactionMonitoring::CaseEntity, nil] The entity a case is associated with
|
|
141
|
+
#
|
|
142
|
+
# @param pending_transactions [Boolean] Whether the case still has transaction scopes pending resolution
|
|
143
|
+
#
|
|
144
|
+
# @param priority [Symbol, Lithic::Models::TransactionMonitoring::CasePriority] Priority level of a case, controlling queue ordering and SLA urgency
|
|
145
|
+
#
|
|
146
|
+
# @param queue_token [String] Token of the queue the case belongs to
|
|
147
|
+
#
|
|
148
|
+
# @param resolution [Symbol, Lithic::Models::TransactionMonitoring::ResolutionOutcome, nil] Outcome recorded when a case is resolved:
|
|
149
|
+
#
|
|
150
|
+
# @param resolution_notes [String, nil] Free-form notes describing the resolution
|
|
151
|
+
#
|
|
152
|
+
# @param resolved [Time, nil] Date and time at which the case was resolved
|
|
153
|
+
#
|
|
154
|
+
# @param rule_token [String, nil] Token of the transaction monitoring rule that triggered the case
|
|
155
|
+
#
|
|
156
|
+
# @param sla_deadline [Time, nil] Deadline by which the case is expected to be resolved
|
|
157
|
+
#
|
|
158
|
+
# @param status [Symbol, Lithic::Models::TransactionMonitoring::CaseStatus] Status of a case as it progresses through the review workflow:
|
|
159
|
+
#
|
|
160
|
+
# @param tags [Hash{Symbol=>String}] Arbitrary key-value metadata associated with the case
|
|
161
|
+
#
|
|
162
|
+
# @param title [String, nil] Short, human-readable summary of the case
|
|
163
|
+
#
|
|
164
|
+
# @param updated [Time] Date and time at which the case was last updated
|
|
165
|
+
end
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
end
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
# @see Lithic::Resources::TransactionMonitoring::Queues#create
|
|
7
|
+
class Queue < Lithic::Internal::Type::BaseModel
|
|
8
|
+
# @!attribute token
|
|
9
|
+
# Globally unique identifier for the queue
|
|
10
|
+
#
|
|
11
|
+
# @return [String]
|
|
12
|
+
required :token, String
|
|
13
|
+
|
|
14
|
+
# @!attribute case_counts
|
|
15
|
+
# Number of cases in the queue, broken down by status. A status is omitted when
|
|
16
|
+
# the queue has no cases in that status
|
|
17
|
+
#
|
|
18
|
+
# @return [Lithic::Models::TransactionMonitoring::Queue::CaseCounts]
|
|
19
|
+
required :case_counts, -> { Lithic::TransactionMonitoring::Queue::CaseCounts }
|
|
20
|
+
|
|
21
|
+
# @!attribute created
|
|
22
|
+
# Date and time at which the queue was created
|
|
23
|
+
#
|
|
24
|
+
# @return [Time]
|
|
25
|
+
required :created, Time
|
|
26
|
+
|
|
27
|
+
# @!attribute description
|
|
28
|
+
# Optional description of the queue
|
|
29
|
+
#
|
|
30
|
+
# @return [String, nil]
|
|
31
|
+
required :description, String, nil?: true
|
|
32
|
+
|
|
33
|
+
# @!attribute name
|
|
34
|
+
# Human-readable name of the queue
|
|
35
|
+
#
|
|
36
|
+
# @return [String]
|
|
37
|
+
required :name, String
|
|
38
|
+
|
|
39
|
+
# @!attribute updated
|
|
40
|
+
# Date and time at which the queue was last updated
|
|
41
|
+
#
|
|
42
|
+
# @return [Time]
|
|
43
|
+
required :updated, Time
|
|
44
|
+
|
|
45
|
+
# @!method initialize(token:, case_counts:, created:, description:, name:, updated:)
|
|
46
|
+
# Some parameter documentations has been truncated, see
|
|
47
|
+
# {Lithic::Models::TransactionMonitoring::Queue} for more details.
|
|
48
|
+
#
|
|
49
|
+
# A queue that groups transaction monitoring cases for review
|
|
50
|
+
#
|
|
51
|
+
# @param token [String] Globally unique identifier for the queue
|
|
52
|
+
#
|
|
53
|
+
# @param case_counts [Lithic::Models::TransactionMonitoring::Queue::CaseCounts] Number of cases in the queue, broken down by status. A status is omitted
|
|
54
|
+
#
|
|
55
|
+
# @param created [Time] Date and time at which the queue was created
|
|
56
|
+
#
|
|
57
|
+
# @param description [String, nil] Optional description of the queue
|
|
58
|
+
#
|
|
59
|
+
# @param name [String] Human-readable name of the queue
|
|
60
|
+
#
|
|
61
|
+
# @param updated [Time] Date and time at which the queue was last updated
|
|
62
|
+
|
|
63
|
+
# @see Lithic::Models::TransactionMonitoring::Queue#case_counts
|
|
64
|
+
class CaseCounts < Lithic::Internal::Type::BaseModel
|
|
65
|
+
# @!attribute assigned
|
|
66
|
+
# Number of cases in the queue with status `ASSIGNED`
|
|
67
|
+
#
|
|
68
|
+
# @return [Integer, nil]
|
|
69
|
+
optional :assigned, Integer, api_name: :ASSIGNED
|
|
70
|
+
|
|
71
|
+
# @!attribute closed
|
|
72
|
+
# Number of cases in the queue with status `CLOSED`
|
|
73
|
+
#
|
|
74
|
+
# @return [Integer, nil]
|
|
75
|
+
optional :closed, Integer, api_name: :CLOSED
|
|
76
|
+
|
|
77
|
+
# @!attribute escalated
|
|
78
|
+
# Number of cases in the queue with status `ESCALATED`
|
|
79
|
+
#
|
|
80
|
+
# @return [Integer, nil]
|
|
81
|
+
optional :escalated, Integer, api_name: :ESCALATED
|
|
82
|
+
|
|
83
|
+
# @!attribute in_review
|
|
84
|
+
# Number of cases in the queue with status `IN_REVIEW`
|
|
85
|
+
#
|
|
86
|
+
# @return [Integer, nil]
|
|
87
|
+
optional :in_review, Integer, api_name: :IN_REVIEW
|
|
88
|
+
|
|
89
|
+
# @!attribute open_
|
|
90
|
+
# Number of cases in the queue with status `OPEN`
|
|
91
|
+
#
|
|
92
|
+
# @return [Integer, nil]
|
|
93
|
+
optional :open_, Integer, api_name: :OPEN
|
|
94
|
+
|
|
95
|
+
# @!attribute resolved
|
|
96
|
+
# Number of cases in the queue with status `RESOLVED`
|
|
97
|
+
#
|
|
98
|
+
# @return [Integer, nil]
|
|
99
|
+
optional :resolved, Integer, api_name: :RESOLVED
|
|
100
|
+
|
|
101
|
+
# @!method initialize(assigned: nil, closed: nil, escalated: nil, in_review: nil, open_: nil, resolved: nil)
|
|
102
|
+
# Number of cases in the queue, broken down by status. A status is omitted when
|
|
103
|
+
# the queue has no cases in that status
|
|
104
|
+
#
|
|
105
|
+
# @param assigned [Integer] Number of cases in the queue with status `ASSIGNED`
|
|
106
|
+
#
|
|
107
|
+
# @param closed [Integer] Number of cases in the queue with status `CLOSED`
|
|
108
|
+
#
|
|
109
|
+
# @param escalated [Integer] Number of cases in the queue with status `ESCALATED`
|
|
110
|
+
#
|
|
111
|
+
# @param in_review [Integer] Number of cases in the queue with status `IN_REVIEW`
|
|
112
|
+
#
|
|
113
|
+
# @param open_ [Integer] Number of cases in the queue with status `OPEN`
|
|
114
|
+
#
|
|
115
|
+
# @param resolved [Integer] Number of cases in the queue with status `RESOLVED`
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Models
|
|
5
|
+
module TransactionMonitoring
|
|
6
|
+
# @see Lithic::Resources::TransactionMonitoring::Queues#create
|
|
7
|
+
class QueueCreateParams < Lithic::Internal::Type::BaseModel
|
|
8
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
9
|
+
include Lithic::Internal::Type::RequestParameters
|
|
10
|
+
|
|
11
|
+
# @!attribute name
|
|
12
|
+
# Human-readable name of the queue
|
|
13
|
+
#
|
|
14
|
+
# @return [String]
|
|
15
|
+
required :name, String
|
|
16
|
+
|
|
17
|
+
# @!attribute description
|
|
18
|
+
# Optional description of the queue
|
|
19
|
+
#
|
|
20
|
+
# @return [String, nil]
|
|
21
|
+
optional :description, String, nil?: true
|
|
22
|
+
|
|
23
|
+
# @!method initialize(name:, description: nil, request_options: {})
|
|
24
|
+
# @param name [String] Human-readable name of the queue
|
|
25
|
+
#
|
|
26
|
+
# @param description [String, nil] Optional description of the queue
|
|
27
|
+
#
|
|
28
|
+
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|