Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchema
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchema
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
The schema defines the output of the processed document by a processor.
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the schema.
-
#display_name ⇒ String
Display name to show to users.
-
#document_prompt ⇒ String
Optional.
-
#entity_types ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType>
Entity types of the schema.
-
#metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata
Metadata for global schema behavior.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiUiv1beta3DocumentSchema
constructor
A new instance of GoogleCloudDocumentaiUiv1beta3DocumentSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiUiv1beta3DocumentSchema
Returns a new instance of GoogleCloudDocumentaiUiv1beta3DocumentSchema.
962 963 964 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 962 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the schema.
Corresponds to the JSON property description
938 939 940 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 938 def description @description end |
#display_name ⇒ String
Display name to show to users.
Corresponds to the JSON property displayName
943 944 945 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 943 def display_name @display_name end |
#document_prompt ⇒ String
Optional. Document level prompt provided by the user. This custom text is
injected into the AI model's prompt to provide extra, document-wide guidance
for processing.
Corresponds to the JSON property documentPrompt
950 951 952 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 950 def document_prompt @document_prompt end |
#entity_types ⇒ Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType>
Entity types of the schema.
Corresponds to the JSON property entityTypes
955 956 957 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 955 def entity_types @entity_types end |
#metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata
Metadata for global schema behavior.
Corresponds to the JSON property metadata
960 961 962 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 960 def @metadata end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
967 968 969 970 971 972 973 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 967 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @document_prompt = args[:document_prompt] if args.key?(:document_prompt) @entity_types = args[:entity_types] if args.key?(:entity_types) @metadata = args[:metadata] if args.key?(:metadata) end |