class Google::Apis::YoutubeV3::ChannelAuditDetails

The auditDetails object encapsulates channel data that is relevant for YouTube Partners during the audit process.

Attributes

community_guidelines_good_standing[RW]

Whether or not the channel respects the community guidelines. Corresponds to the JSON property `communityGuidelinesGoodStanding` @return [Boolean]

community_guidelines_good_standing?[RW]

Whether or not the channel respects the community guidelines. Corresponds to the JSON property `communityGuidelinesGoodStanding` @return [Boolean]

content_id_claims_good_standing[RW]

Whether or not the channel has any unresolved claims. Corresponds to the JSON property `contentIdClaimsGoodStanding` @return [Boolean]

content_id_claims_good_standing?[RW]

Whether or not the channel has any unresolved claims. Corresponds to the JSON property `contentIdClaimsGoodStanding` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 1055
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/youtube_v3/classes.rb, line 1060
def update!(**args)
  @community_guidelines_good_standing = args[:community_guidelines_good_standing] if args.key?(:community_guidelines_good_standing)
  @content_id_claims_good_standing = args[:content_id_claims_good_standing] if args.key?(:content_id_claims_good_standing)
  @copyright_strikes_good_standing = args[:copyright_strikes_good_standing] if args.key?(:copyright_strikes_good_standing)
end