class Google::Apis::PartnersV2::CertificationStatus
Google Partners certification status.
Attributes
exam_statuses[RW]
List of certification exam statuses. Corresponds to the JSON property `examStatuses` @return [Array<Google::Apis::PartnersV2::CertificationExamStatus>]
is_certified[RW]
Whether certification is passing. Corresponds to the JSON property `isCertified` @return [Boolean]
is_certified?[RW]
Whether certification is passing. Corresponds to the JSON property `isCertified` @return [Boolean]
type[RW]
The type of the certification. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/partners_v2/classes.rb, line 757 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/partners_v2/classes.rb, line 762 def update!(**args) @type = args[:type] if args.key?(:type) @exam_statuses = args[:exam_statuses] if args.key?(:exam_statuses) @is_certified = args[:is_certified] if args.key?(:is_certified) end