google-api-ruby-client/generated/google/apis/youtubereporting_v1/classes.rb

259 lines
8.8 KiB
Ruby

# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module YoutubereportingV1
# Media resource.
class Media
include Google::Apis::Core::Hashable
# Name of the media resource.
# Corresponds to the JSON property `resourceName`
# @return [String]
attr_accessor :resource_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@resource_name = args[:resource_name] unless args[:resource_name].nil?
end
end
# Response message for ReportingService.ListReportTypes.
class ListReportTypesResponse
include Google::Apis::Core::Hashable
# The list of report types.
# Corresponds to the JSON property `reportTypes`
# @return [Array<Google::Apis::YoutubereportingV1::ReportType>]
attr_accessor :report_types
# A token to retrieve next page of results. Pass this value in the
# ListReportTypesRequest.page_token field in the subsequent call to `
# ListReportTypes` method to retrieve the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@report_types = args[:report_types] unless args[:report_types].nil?
@next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end
end
# A report type.
class ReportType
include Google::Apis::Core::Hashable
# The ID of the report type (max. 100 characters).
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# The name of the report type (max. 100 characters).
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] unless args[:id].nil?
@name = args[:name] unless args[:name].nil?
end
end
# A job creating reports of a specific type.
class Job
include Google::Apis::Core::Hashable
# The server-generated ID of the job (max. 40 characters).
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# The type of reports this job creates. Corresponds to the ID of a ReportType.
# Corresponds to the JSON property `reportTypeId`
# @return [String]
attr_accessor :report_type_id
# The name of the job (max. 100 characters). TODO(lanthaler) Clarify what this
# will actually be used for
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# The creation date/time of the job.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] unless args[:id].nil?
@report_type_id = args[:report_type_id] unless args[:report_type_id].nil?
@name = args[:name] unless args[:name].nil?
@create_time = args[:create_time] unless args[:create_time].nil?
end
end
# Response message for ReportingService.ListJobs.
class ListJobsResponse
include Google::Apis::Core::Hashable
# The list of jobs.
# Corresponds to the JSON property `jobs`
# @return [Array<Google::Apis::YoutubereportingV1::Job>]
attr_accessor :jobs
# A token to retrieve next page of results. Pass this value in the
# ListJobsRequest.page_token field in the subsequent call to `ListJobs` method
# to retrieve the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@jobs = args[:jobs] unless args[:jobs].nil?
@next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end
end
# A generic empty message that you can re-use to avoid defining duplicated empty
# messages in your APIs. A typical example is to use it as the request or the
# response type of an API method. For instance: service Foo ` rpc Bar(google.
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
# `Empty` is empty JSON object ````.
class Empty
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Response message for ReportingService.ListReports.
class ListReportsResponse
include Google::Apis::Core::Hashable
# The list of report types.
# Corresponds to the JSON property `reports`
# @return [Array<Google::Apis::YoutubereportingV1::Report>]
attr_accessor :reports
# A token to retrieve next page of results. Pass this value in the
# ListReportsRequest.page_token field in the subsequent call to `ListReports`
# method to retrieve the next page of results.
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@reports = args[:reports] unless args[:reports].nil?
@next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
end
end
# A report's metadata including the URL from which the report itself can be
# downloaded.
class Report
include Google::Apis::Core::Hashable
# The server-generated ID of the report.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# The ID of the job that created this report.
# Corresponds to the JSON property `jobId`
# @return [String]
attr_accessor :job_id
# The start of the time period that the report instance covers. The value is
# inclusive.
# Corresponds to the JSON property `startTime`
# @return [String]
attr_accessor :start_time
# The end of the time period that the report instance covers. The value is
# exclusive.
# Corresponds to the JSON property `endTime`
# @return [String]
attr_accessor :end_time
# The date/time when this report was created.
# Corresponds to the JSON property `createTime`
# @return [String]
attr_accessor :create_time
# The URL from which the report can be downloaded (max. 1000 characters).
# Corresponds to the JSON property `downloadUrl`
# @return [String]
attr_accessor :download_url
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] unless args[:id].nil?
@job_id = args[:job_id] unless args[:job_id].nil?
@start_time = args[:start_time] unless args[:start_time].nil?
@end_time = args[:end_time] unless args[:end_time].nil?
@create_time = args[:create_time] unless args[:create_time].nil?
@download_url = args[:download_url] unless args[:download_url].nil?
end
end
end
end
end