Show / Hide Table of Contents

Class ChangeLogsResource.ListRequest

Retrieves a list of change logs. This method supports paging.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ChangeLogsListResponse>
DfareportingBaseServiceRequest<ChangeLogsListResponse>
ChangeLogsResource.ListRequest
Implements
IClientServiceRequest<ChangeLogsListResponse>
IClientServiceRequest
Inherited Members
DfareportingBaseServiceRequest<ChangeLogsListResponse>.Xgafv
DfareportingBaseServiceRequest<ChangeLogsListResponse>.AccessToken
DfareportingBaseServiceRequest<ChangeLogsListResponse>.Alt
DfareportingBaseServiceRequest<ChangeLogsListResponse>.Callback
DfareportingBaseServiceRequest<ChangeLogsListResponse>.Fields
DfareportingBaseServiceRequest<ChangeLogsListResponse>.Key
DfareportingBaseServiceRequest<ChangeLogsListResponse>.OauthToken
DfareportingBaseServiceRequest<ChangeLogsListResponse>.PrettyPrint
DfareportingBaseServiceRequest<ChangeLogsListResponse>.QuotaUser
DfareportingBaseServiceRequest<ChangeLogsListResponse>.UploadType
DfareportingBaseServiceRequest<ChangeLogsListResponse>.UploadProtocol
ClientServiceRequest<ChangeLogsListResponse>.Execute()
ClientServiceRequest<ChangeLogsListResponse>.ExecuteAsStream()
ClientServiceRequest<ChangeLogsListResponse>.ExecuteAsync()
ClientServiceRequest<ChangeLogsListResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ChangeLogsListResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ChangeLogsListResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ChangeLogsListResponse>.CreateRequest(bool?)
ClientServiceRequest<ChangeLogsListResponse>.GenerateRequestUri()
ClientServiceRequest<ChangeLogsListResponse>.GetBody()
ClientServiceRequest<ChangeLogsListResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ChangeLogsListResponse>.ETagAction
ClientServiceRequest<ChangeLogsListResponse>.ModifyRequest
ClientServiceRequest<ChangeLogsListResponse>.ValidateParameters
ClientServiceRequest<ChangeLogsListResponse>.RequestParameters
ClientServiceRequest<ChangeLogsListResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dfareporting.v3_5
Assembly: Google.Apis.Dfareporting.v3_5.dll
Syntax
public class ChangeLogsResource.ListRequest : DfareportingBaseServiceRequest<ChangeLogsListResponse>, IClientServiceRequest<ChangeLogsListResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, long)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, long profileId)
Parameters
Type Name Description
IClientService service
long profileId

Properties

Action

Select only change logs with the specified action.

Declaration
[RequestParameter("action", RequestParameterType.Query)]
public virtual ChangeLogsResource.ListRequest.ActionEnum? Action { get; set; }
Property Value
Type Description
ChangeLogsResource.ListRequest.ActionEnum?

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dfareporting.v3_5.Data.ChangeLogsListResponse>.HttpMethod

Ids

Select only change logs with these IDs.

Declaration
[RequestParameter("ids", RequestParameterType.Query)]
public virtual Repeatable<string> Ids { get; set; }
Property Value
Type Description
Repeatable<string>

MaxChangeTime

Select only change logs whose change time is before the specified maxChangeTime.The time should be formatted as an RFC3339 date/time string. For example, for 10:54 PM on July 18th, 2015, in the America/New York time zone, the format is "2015-07-18T22:54:00-04:00". In other words, the year, month, day, the letter T, the hour (24-hour clock system), minute, second, and then the time zone offset.

Declaration
[RequestParameter("maxChangeTime", RequestParameterType.Query)]
public virtual string MaxChangeTime { get; set; }
Property Value
Type Description
string

MaxResults

Maximum number of results to return.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual int? MaxResults { get; set; }
Property Value
Type Description
int?

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dfareporting.v3_5.Data.ChangeLogsListResponse>.MethodName

MinChangeTime

Select only change logs whose change time is after the specified minChangeTime.The time should be formatted as an RFC3339 date/time string. For example, for 10:54 PM on July 18th, 2015, in the America/New York time zone, the format is "2015-07-18T22:54:00-04:00". In other words, the year, month, day, the letter T, the hour (24-hour clock system), minute, second, and then the time zone offset.

Declaration
[RequestParameter("minChangeTime", RequestParameterType.Query)]
public virtual string MinChangeTime { get; set; }
Property Value
Type Description
string

ObjectIds

Select only change logs with these object IDs.

Declaration
[RequestParameter("objectIds", RequestParameterType.Query)]
public virtual Repeatable<string> ObjectIds { get; set; }
Property Value
Type Description
Repeatable<string>

ObjectType

Select only change logs with the specified object type.

Declaration
[RequestParameter("objectType", RequestParameterType.Query)]
public virtual ChangeLogsResource.ListRequest.ObjectTypeEnum? ObjectType { get; set; }
Property Value
Type Description
ChangeLogsResource.ListRequest.ObjectTypeEnum?

PageToken

Value of the nextPageToken from the previous result page.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

ProfileId

User profile ID associated with this request.

Declaration
[RequestParameter("profileId", RequestParameterType.Path)]
public virtual long ProfileId { get; }
Property Value
Type Description
long

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dfareporting.v3_5.Data.ChangeLogsListResponse>.RestPath

SearchString

Select only change logs whose object ID, user name, old or new values match the search string.

Declaration
[RequestParameter("searchString", RequestParameterType.Query)]
public virtual string SearchString { get; set; }
Property Value
Type Description
string

UserProfileIds

Select only change logs with these user profile IDs.

Declaration
[RequestParameter("userProfileIds", RequestParameterType.Query)]
public virtual Repeatable<string> UserProfileIds { get; set; }
Property Value
Type Description
Repeatable<string>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dfareporting.v3_5.DfareportingBaseServiceRequest<Google.Apis.Dfareporting.v3_5.Data.ChangeLogsListResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top Generated by DocFX