Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: [google-cloud-documentai] clarify the unavailability of some features #12699

Merged
merged 4 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -626,13 +626,17 @@ class StyleInfo(proto.Message):
underlined (bool):
Whether the text is underlined.
strikeout (bool):
Whether the text is strikethrough.
Whether the text is strikethrough. This
feature is not supported yet.
subscript (bool):
Whether the text is a subscript.
Whether the text is a subscript. This feature
is not supported yet.
superscript (bool):
Whether the text is a superscript.
Whether the text is a superscript. This
feature is not supported yet.
smallcaps (bool):
Whether the text is in small caps.
Whether the text is in small caps. This
feature is not supported yet.
font_weight (int):
TrueType weight on a scale ``100`` (thin) to ``1000``
(ultra-heavy). Normal is ``400``, bold is ``700``.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ class ProcessorVersion(proto.Message):
Attributes:
name (str):
The resource name of the processor version. Format:
Identifier. The resource name of the processor version.
Format:
``projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}``
display_name (str):
The display name of the processor version.
document_schema (google.cloud.documentai_v1.types.DocumentSchema):
The schema of the processor version.
Describes the output.
state (google.cloud.documentai_v1.types.ProcessorVersion.State):
The state of the processor version.
Output only. The state of the processor
version.
create_time (google.protobuf.timestamp_pb2.Timestamp):
The time the processor version was created.
latest_evaluation (google.cloud.documentai_v1.types.EvaluationReference):
Expand Down
Loading