Class ChangeLogsResource.ListRequest
Retrieves a list of change logs. This method supports paging.
Inheritance
Inherited Members
Namespace: Google.Apis.Dfareporting.v4
Assembly: Google.Apis.Dfareporting.v4.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
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
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
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()