Class JobsResource.ReportsResource.ListRequest
Lists reports created by a specific job. Returns NOT_FOUND if the job does not exist.
Inheritance
JobsResource.ReportsResource.ListRequest
Assembly: Google.Apis.YouTubeReporting.v1.dll
Syntax
public class JobsResource.ReportsResource.ListRequest : YouTubeReportingBaseServiceRequest<ListReportsResponse>, IClientServiceRequest<ListReportsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string jobId)
Parameters
Properties
CreatedAfter
Declaration
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreatedAfterDateTimeOffset instead.")]
public virtual object CreatedAfter { get; set; }
Property Value
CreatedAfterDateTimeOffset
Declaration
public virtual DateTimeOffset? CreatedAfterDateTimeOffset { get; set; }
Property Value
CreatedAfterRaw
Declaration
[RequestParameter("createdAfter", RequestParameterType.Query)]
public virtual string CreatedAfterRaw { get; }
Property Value
HttpMethod
Declaration
public override string HttpMethod { get; }
Property Value
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.YouTubeReporting.v1.Data.ListReportsResponse>.HttpMethod
JobId
Declaration
[RequestParameter("jobId", RequestParameterType.Path)]
public virtual string JobId { get; }
Property Value
MethodName
Declaration
public override string MethodName { get; }
Property Value
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.YouTubeReporting.v1.Data.ListReportsResponse>.MethodName
OnBehalfOfContentOwner
The content owner's external ID on which behalf the user is acting on. If not set, the user is
acting for himself (his own channel).
Declaration
[RequestParameter("onBehalfOfContentOwner", RequestParameterType.Query)]
public virtual string OnBehalfOfContentOwner { get; set; }
Property Value
PageSize
Requested page size. Server may return fewer report types than requested. If unspecified, server
will pick an appropriate default.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
PageToken
A token identifying a page of results the server should return. Typically, this is the value of
ListReportsResponse.next_page_token returned in response to the previous call to the ListReports
method.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
RestPath
Declaration
public override string RestPath { get; }
Property Value
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.YouTubeReporting.v1.Data.ListReportsResponse>.RestPath
StartTimeAtOrAfter
Declaration
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeAtOrAfterDateTimeOffset instead.")]
public virtual object StartTimeAtOrAfter { get; set; }
Property Value
StartTimeAtOrAfterDateTimeOffset
Declaration
public virtual DateTimeOffset? StartTimeAtOrAfterDateTimeOffset { get; set; }
Property Value
StartTimeAtOrAfterRaw
Declaration
[RequestParameter("startTimeAtOrAfter", RequestParameterType.Query)]
public virtual string StartTimeAtOrAfterRaw { get; }
Property Value
StartTimeBefore
Declaration
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeBeforeDateTimeOffset instead.")]
public virtual object StartTimeBefore { get; set; }
Property Value
StartTimeBeforeDateTimeOffset
Declaration
public virtual DateTimeOffset? StartTimeBeforeDateTimeOffset { get; set; }
Property Value
StartTimeBeforeRaw
Declaration
[RequestParameter("startTimeBefore", RequestParameterType.Query)]
public virtual string StartTimeBeforeRaw { get; }
Property Value
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()
Overrides
Implements