Show / Hide Table of Contents

Class RepricingrulesResource.PatchRequest

Updates a repricing rule in your Merchant Center account. All mutable fields will be overwritten in each update request. In each update, you must provide all required mutable fields, or an error will be thrown. If you do not provide an optional field in the update request, if that field currently exists, it will be deleted from the rule.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<RepricingRule>
ShoppingContentBaseServiceRequest<RepricingRule>
RepricingrulesResource.PatchRequest
Implements
IClientServiceRequest<RepricingRule>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<RepricingRule>.Xgafv
ShoppingContentBaseServiceRequest<RepricingRule>.AccessToken
ShoppingContentBaseServiceRequest<RepricingRule>.Alt
ShoppingContentBaseServiceRequest<RepricingRule>.Callback
ShoppingContentBaseServiceRequest<RepricingRule>.Fields
ShoppingContentBaseServiceRequest<RepricingRule>.Key
ShoppingContentBaseServiceRequest<RepricingRule>.OauthToken
ShoppingContentBaseServiceRequest<RepricingRule>.PrettyPrint
ShoppingContentBaseServiceRequest<RepricingRule>.QuotaUser
ShoppingContentBaseServiceRequest<RepricingRule>.UploadType
ShoppingContentBaseServiceRequest<RepricingRule>.UploadProtocol
ClientServiceRequest<RepricingRule>.Execute()
ClientServiceRequest<RepricingRule>.ExecuteAsStream()
ClientServiceRequest<RepricingRule>.ExecuteAsync()
ClientServiceRequest<RepricingRule>.ExecuteAsync(CancellationToken)
ClientServiceRequest<RepricingRule>.ExecuteAsStreamAsync()
ClientServiceRequest<RepricingRule>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<RepricingRule>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<RepricingRule>.GenerateRequestUri()
ClientServiceRequest<RepricingRule>.GetDefaultETagAction(String)
ClientServiceRequest<RepricingRule>.ETagAction
ClientServiceRequest<RepricingRule>.ModifyRequest
ClientServiceRequest<RepricingRule>.ValidateParameters
ClientServiceRequest<RepricingRule>.RequestParameters
ClientServiceRequest<RepricingRule>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ShoppingContent.v2_1
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class PatchRequest : ShoppingContentBaseServiceRequest<RepricingRule>, IClientServiceRequest<RepricingRule>, IClientServiceRequest

Constructors

PatchRequest(IClientService, RepricingRule, Int64, String)

Constructs a new Patch request.

Declaration
public PatchRequest(IClientService service, RepricingRule body, long merchantId, string ruleId)
Parameters
Type Name Description
IClientService service
RepricingRule body
System.Int64 merchantId
System.String ruleId

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.RepricingRule>.HttpMethod

MerchantId

Required. The id of the merchant who owns the repricing rule.

Declaration
[RequestParameter("merchantId", RequestParameterType.Path)]
public virtual long MerchantId { get; }
Property Value
Type Description
System.Int64

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.RepricingRule>.MethodName

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.RepricingRule>.RestPath

RuleId

Required. The id of the rule to update.

Declaration
[RequestParameter("ruleId", RequestParameterType.Path)]
public virtual string RuleId { get; }
Property Value
Type Description
System.String

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.RepricingRule>.GetBody()

InitParameters()

Initializes Patch parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.ShoppingContent.v2_1.ShoppingContentBaseServiceRequest<Google.Apis.ShoppingContent.v2_1.Data.RepricingRule>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top