Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevision
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevision
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1/classes.rb,
 lib/google/apis/documentai_v1/representations.rb,
 lib/google/apis/documentai_v1/representations.rb
Overview
Contains past or forward revisions of this document.
Instance Attribute Summary collapse
- 
  
    
      #agent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the change was made by a person specify the name or id of that person. 
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that the revision was created. 
- 
  
    
      #human_review  ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevisionHumanReview 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Human Review information of the document. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Id of the revision. 
- 
  
    
      #parent  ⇒ Array<Fixnum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The revisions that this revision is based on. 
- 
  
    
      #parent_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The revisions that this revision is based on. 
- 
  
    
      #processor  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the annotation was made by processor identify the processor by its resource name. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1DocumentRevision 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1DocumentRevision. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1DocumentRevision
Returns a new instance of GoogleCloudDocumentaiV1DocumentRevision.
| 2452 2453 2454 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2452 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#agent ⇒ String
If the change was made by a person specify the name or id of that person.
Corresponds to the JSON property agent
| 2415 2416 2417 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2415 def agent @agent end | 
#create_time ⇒ String
The time that the revision was created.
Corresponds to the JSON property createTime
| 2420 2421 2422 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2420 def create_time @create_time end | 
#human_review ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentRevisionHumanReview
Human Review information of the document.
Corresponds to the JSON property humanReview
| 2425 2426 2427 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2425 def human_review @human_review end | 
#id ⇒ String
Id of the revision. Unique within the context of the document.
Corresponds to the JSON property id
| 2430 2431 2432 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2430 def id @id end | 
#parent ⇒ Array<Fixnum>
The revisions that this revision is based on. This can include one or more
parent (when documents are merged.) This field represents the index into the 
revisions field.
Corresponds to the JSON property parent
| 2437 2438 2439 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2437 def parent @parent end | 
#parent_ids ⇒ Array<String>
The revisions that this revision is based on. Must include all the ids that
have anything to do with this revision - eg. there are provenance.parent.
revision fields that index into this field.
Corresponds to the JSON property parentIds
| 2444 2445 2446 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2444 def parent_ids @parent_ids end | 
#processor ⇒ String
If the annotation was made by processor identify the processor by its resource
name.
Corresponds to the JSON property processor
| 2450 2451 2452 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2450 def processor @processor end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2457 2458 2459 2460 2461 2462 2463 2464 2465 | # File 'lib/google/apis/documentai_v1/classes.rb', line 2457 def update!(**args) @agent = args[:agent] if args.key?(:agent) @create_time = args[:create_time] if args.key?(:create_time) @human_review = args[:human_review] if args.key?(:human_review) @id = args[:id] if args.key?(:id) @parent = args[:parent] if args.key?(:parent) @parent_ids = args[:parent_ids] if args.key?(:parent_ids) @processor = args[:processor] if args.key?(:processor) end |