Class: Aws::Comprehend::Types::Point

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

The X and Y coordinates of a point on a document page.

For additional information, see [Point] in the Amazon Textract API reference.

[1]: docs.aws.amazon.com/textract/latest/dg/API_Point.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#xFloat

The value of the X coordinate for a point on a polygon

Returns:

  • (Float)


6407
6408
6409
6410
6411
6412
# File 'lib/aws-sdk-comprehend/types.rb', line 6407

class Point < Struct.new(
  :x,
  :y)
  SENSITIVE = []
  include Aws::Structure
end

#yFloat

The value of the Y coordinate for a point on a polygon

Returns:

  • (Float)


6407
6408
6409
6410
6411
6412
# File 'lib/aws-sdk-comprehend/types.rb', line 6407

class Point < Struct.new(
  :x,
  :y)
  SENSITIVE = []
  include Aws::Structure
end