class Google::Apis::ContentV2::AccountStatusStatistics
Attributes
active[RW]
Number of active offers. Corresponds to the JSON property `active` @return [Fixnum]
disapproved[RW]
Number of disapproved offers. Corresponds to the JSON property `disapproved` @return [Fixnum]
expiring[RW]
Number of expiring offers. Corresponds to the JSON property `expiring` @return [Fixnum]
pending[RW]
Number of pending offers. Corresponds to the JSON property `pending` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 681 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 686 def update!(**args) @active = args[:active] if args.key?(:active) @disapproved = args[:disapproved] if args.key?(:disapproved) @expiring = args[:expiring] if args.key?(:expiring) @pending = args[:pending] if args.key?(:pending) end