class Google::Apis::DisplayvideoV1::ReviewStatusInfo

Review statuses for the creative.

Attributes

approval_status[RW]

Represents the basic approval needed for a creative to begin serving. Summary of creative_and_landing_page_review_status and content_and_policy_review_status. Corresponds to the JSON property `approvalStatus` @return [String]

content_and_policy_review_status[RW]

Content and policy review status for the creative. Corresponds to the JSON property `contentAndPolicyReviewStatus` @return [String]

creative_and_landing_page_review_status[RW]

Creative and landing page review status for the creative. Corresponds to the JSON property `creativeAndLandingPageReviewStatus` @return [String]

exchange_review_statuses[RW]

Exchange review statuses for the creative. Corresponds to the JSON property `exchangeReviewStatuses` @return [Array<Google::Apis::DisplayvideoV1::ExchangeReviewStatus>]

publisher_review_statuses[RW]

Publisher review statuses for the creative. Corresponds to the JSON property `publisherReviewStatuses` @return [Array<Google::Apis::DisplayvideoV1::PublisherReviewStatus>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 8580
def update!(**args)
  @approval_status = args[:approval_status] if args.key?(:approval_status)
  @content_and_policy_review_status = args[:content_and_policy_review_status] if args.key?(:content_and_policy_review_status)
  @creative_and_landing_page_review_status = args[:creative_and_landing_page_review_status] if args.key?(:creative_and_landing_page_review_status)
  @exchange_review_statuses = args[:exchange_review_statuses] if args.key?(:exchange_review_statuses)
  @publisher_review_statuses = args[:publisher_review_statuses] if args.key?(:publisher_review_statuses)
end