Class: Google::Apis::PartnersV2::CertificationStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PartnersV2::CertificationStatus
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/partners_v2/classes.rb,
 generated/google/apis/partners_v2/representations.rb,
 generated/google/apis/partners_v2/representations.rb
Overview
Google Partners certification status.
Instance Attribute Summary collapse
- 
  
    
      #exam_statuses  ⇒ Array<Google::Apis::PartnersV2::CertificationExamStatus> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of certification exam statuses. 
- 
  
    
      #is_certified  ⇒ Boolean 
    
    
      (also: #is_certified?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Whether certification is passing. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the certification. 
- 
  
    
      #user_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of people who are certified, Corresponds to the JSON property userCount.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CertificationStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CertificationStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CertificationStatus
Returns a new instance of CertificationStatus
| 335 336 337 | # File 'generated/google/apis/partners_v2/classes.rb', line 335 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#exam_statuses ⇒ Array<Google::Apis::PartnersV2::CertificationExamStatus>
List of certification exam statuses.
Corresponds to the JSON property examStatuses
| 317 318 319 | # File 'generated/google/apis/partners_v2/classes.rb', line 317 def exam_statuses @exam_statuses end | 
#is_certified ⇒ Boolean Also known as: is_certified?
Whether certification is passing.
Corresponds to the JSON property isCertified
| 322 323 324 | # File 'generated/google/apis/partners_v2/classes.rb', line 322 def is_certified @is_certified end | 
#type ⇒ String
The type of the certification.
Corresponds to the JSON property type
| 328 329 330 | # File 'generated/google/apis/partners_v2/classes.rb', line 328 def type @type end | 
#user_count ⇒ Fixnum
Number of people who are certified,
Corresponds to the JSON property userCount
| 333 334 335 | # File 'generated/google/apis/partners_v2/classes.rb', line 333 def user_count @user_count end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 340 341 342 343 344 345 | # File 'generated/google/apis/partners_v2/classes.rb', line 340 def update!(**args) @exam_statuses = args[:exam_statuses] if args.key?(:exam_statuses) @is_certified = args[:is_certified] if args.key?(:is_certified) @type = args[:type] if args.key?(:type) @user_count = args[:user_count] if args.key?(:user_count) end |