lockstep_rails 0.3.44 → 0.3.46
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/app/models/lockstep/accounting_profile.rb +8 -0
- data/app/models/lockstep/magic_link.rb +7 -2
- data/app/models/lockstep/transcription_validation_request.rb +5 -0
- data/app/platform_api/schema/accounting_profile.rb +108 -0
- data/app/platform_api/schema/accounting_profile_contact.rb +56 -0
- data/app/platform_api/schema/accounting_profile_contact_fetch_result.rb +26 -0
- data/app/platform_api/schema/accounting_profile_fetch_result.rb +26 -0
- data/app/platform_api/schema/app_enrollment_reconnect_info.rb +4 -0
- data/app/platform_api/schema/bulk_delete_request.rb +14 -0
- data/app/platform_api/schema/delete_result.rb +15 -0
- data/app/platform_api/schema/group_account.rb +4 -0
- data/app/platform_api/schema/invoice.rb +5 -0
- data/app/platform_api/schema/invoice_history.rb +5 -0
- data/app/platform_api/schema/invoice_sync.rb +5 -0
- data/app/platform_api/schema/magic_link.rb +16 -4
- data/app/platform_api/schema/magic_link_status.rb +27 -0
- data/app/platform_api/schema/payment.rb +5 -0
- data/app/platform_api/schema/payment_sync.rb +5 -0
- data/app/platform_api/schema/status.rb +16 -0
- data/app/platform_api/schema/sync_request.rb +9 -0
- data/app/platform_api/schema/transcription_request_submit.rb +30 -0
- data/app/platform_api/schema/transcription_validation_request.rb +53 -0
- data/app/platform_api/schema/transcription_validation_request_fetch_result.rb +26 -0
- data/app/platform_api/schema/transcription_validation_request_item.rb +101 -0
- data/app/platform_api/swagger.json +4385 -1991
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +15 -2
@@ -0,0 +1,101 @@
|
|
1
|
+
class Schema::TranscriptionValidationRequestItem < Lockstep::ApiRecord
|
2
|
+
|
3
|
+
# ApiRecord will crash unless `id_ref` is defined
|
4
|
+
def self.id_ref
|
5
|
+
nil
|
6
|
+
end
|
7
|
+
|
8
|
+
# The unique identifier of the transcription validation request item.
|
9
|
+
# @type: string
|
10
|
+
# @format: uuid
|
11
|
+
field :transcription_validation_request_item_id
|
12
|
+
|
13
|
+
# The ID number of the transcription validation request this item belongs to.
|
14
|
+
# @type: string
|
15
|
+
# @format: uuid
|
16
|
+
field :transcription_validation_request_id
|
17
|
+
|
18
|
+
# Group account transcription validation request item is associated with.
|
19
|
+
# @type: string
|
20
|
+
# @format: uuid
|
21
|
+
field :group_key
|
22
|
+
|
23
|
+
# Generated hash of the file being validated.
|
24
|
+
# @type: string
|
25
|
+
field :file_hash
|
26
|
+
|
27
|
+
# Original name of the file on disk, without its extension.
|
28
|
+
# @type: string
|
29
|
+
field :file_name
|
30
|
+
|
31
|
+
# Original extension name of the file on disk.
|
32
|
+
# @type: string
|
33
|
+
field :file_ext
|
34
|
+
|
35
|
+
# Location of file in blob storage to be validated.
|
36
|
+
# @type: string
|
37
|
+
field :file_location
|
38
|
+
|
39
|
+
# Transcription result
|
40
|
+
# @type: string
|
41
|
+
field :transcription_result
|
42
|
+
|
43
|
+
# Transcription process start date
|
44
|
+
# @type: string
|
45
|
+
# @format: date-time
|
46
|
+
field :process_start, Types::Params::DateTime
|
47
|
+
|
48
|
+
# Transcription process end date
|
49
|
+
# @type: string
|
50
|
+
# @format: date-time
|
51
|
+
field :process_end, Types::Params::DateTime
|
52
|
+
|
53
|
+
# Amount of times item was processed to retrieve the transcription data
|
54
|
+
# @type: integer
|
55
|
+
# @format: int32
|
56
|
+
field :retry_count
|
57
|
+
|
58
|
+
# Feedback result specified by the client when the transcription result is not correct. This feedback result will be sent back to the transcription services to retrain and improve models over time.
|
59
|
+
# @type: string
|
60
|
+
field :feedback_result
|
61
|
+
|
62
|
+
# Date when feedback result was sent back to transcription service.
|
63
|
+
# @type: string
|
64
|
+
# @format: date-time
|
65
|
+
field :feedback_sent, Types::Params::DateTime
|
66
|
+
|
67
|
+
# A code identifying the status of this transcription validation request item.
|
68
|
+
#
|
69
|
+
# Recognized Transcription Validation Request status codes are:
|
70
|
+
# * `New` - Represents a transcription validation request item that is considered new and needs work to complete
|
71
|
+
# * `In Progress` - Represents a transcription validation request item that is currently being worked on
|
72
|
+
# * `Failed` - Represents a transcription validation request item that could not complete the validation process
|
73
|
+
# * `Complete` - Represents a transcription validation request item that is considered complete and does not need any further work
|
74
|
+
# @type: string
|
75
|
+
field :status_code
|
76
|
+
|
77
|
+
# The date on which this transcription validation request item was created.
|
78
|
+
# @type: string
|
79
|
+
# @format: date-time
|
80
|
+
field :created, Types::Params::DateTime
|
81
|
+
|
82
|
+
# The ID number of the user who created this transcription validation request item.
|
83
|
+
# @type: string
|
84
|
+
# @format: uuid
|
85
|
+
field :created_user_id
|
86
|
+
|
87
|
+
# The date on which this transcription validation request item was last modified.
|
88
|
+
# @type: string
|
89
|
+
# @format: date-time
|
90
|
+
field :modified, Types::Params::DateTime
|
91
|
+
|
92
|
+
# The ID number of the user who most recently modified this transcription validation request item.
|
93
|
+
# @type: string
|
94
|
+
# @format: uuid
|
95
|
+
field :modified_user_id
|
96
|
+
|
97
|
+
belongs_to :created_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"created_user_id"}
|
98
|
+
belongs_to :modified_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"modified_user_id"}
|
99
|
+
|
100
|
+
|
101
|
+
end
|