class Google::Apis::DoubleclickbidmanagerV1::UploadLineItemsRequest

Request to upload line items.

Attributes

dry_run[RW]

Set to true to get upload status without actually persisting the line items. Corresponds to the JSON property `dryRun` @return [Boolean]

dry_run?[RW]

Set to true to get upload status without actually persisting the line items. Corresponds to the JSON property `dryRun` @return [Boolean]

format[RW]

Format the line items are in. Default to CSV. Corresponds to the JSON property `format` @return [String]

line_items[RW]

Line items in CSV to upload. Refer to Entity Write File Format for more information on file format. Corresponds to the JSON property `lineItems` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/doubleclickbidmanager_v1/classes.rb, line 750
def update!(**args)
  @dry_run = args[:dry_run] if args.key?(:dry_run)
  @format = args[:format] if args.key?(:format)
  @line_items = args[:line_items] if args.key?(:line_items)
end