class Google::Apis::YoutubeV3::ChannelAuditDetails
The auditDetails object encapsulates channel data that is relevant for YouTube Partners during the audit process.
Attributes
Whether or not the channel respects the community guidelines. Corresponds to the JSON property `communityGuidelinesGoodStanding` @return [Boolean]
Whether or not the channel respects the community guidelines. Corresponds to the JSON property `communityGuidelinesGoodStanding` @return [Boolean]
Whether or not the channel has any unresolved claims. Corresponds to the JSON property `contentIdClaimsGoodStanding` @return [Boolean]
Whether or not the channel has any unresolved claims. Corresponds to the JSON property `contentIdClaimsGoodStanding` @return [Boolean]
Whether or not the channel has any copyright strikes. Corresponds to the JSON property `copyrightStrikesGoodStanding` @return [Boolean]
Whether or not the channel has any copyright strikes. Corresponds to the JSON property `copyrightStrikesGoodStanding` @return [Boolean]
Describes the general state of the channel. This field will always show if there are any issues whatsoever with the channel. Currently this field represents the result of the logical and operation over the community guidelines good standing, the copyright strikes good standing and the content ID claims good standing, but this may change in the future. Corresponds to the JSON property `overallGoodStanding` @return [Boolean]
Describes the general state of the channel. This field will always show if there are any issues whatsoever with the channel. Currently this field represents the result of the logical and operation over the community guidelines good standing, the copyright strikes good standing and the content ID claims good standing, but this may change in the future. Corresponds to the JSON property `overallGoodStanding` @return [Boolean]
Public Class Methods
# File generated/google/apis/youtube_v3/classes.rb, line 1005 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/youtube_v3/classes.rb, line 1010 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) @overall_good_standing = args[:overall_good_standing] if args.key?(:overall_good_standing) end