Show / Hide Table of Contents

Class OrdersResource.GetbymerchantorderidRequest

Retrieves an order using merchant order ID.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>
OrdersResource.GetbymerchantorderidRequest
Implements
IClientServiceRequest<OrdersGetByMerchantOrderIdResponse>
IClientServiceRequest
Inherited Members
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.Alt
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.Fields
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.Key
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.OauthToken
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.PrettyPrint
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.QuotaUser
ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>.UserIp
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.Execute()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ExecuteAsStream()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ExecuteAsync()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.GenerateRequestUri()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.GetBody()
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.GetDefaultETagAction(String)
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ETagAction
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.ModifyRequest
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.RequestParameters
ClientServiceRequest<OrdersGetByMerchantOrderIdResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
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 GetbymerchantorderidRequest : ShoppingContentBaseServiceRequest<OrdersGetByMerchantOrderIdResponse>, IClientServiceRequest<OrdersGetByMerchantOrderIdResponse>, IClientServiceRequest

Constructors

GetbymerchantorderidRequest(IClientService, UInt64, String)

Constructs a new Getbymerchantorderid request.

Declaration
public GetbymerchantorderidRequest(IClientService service, ulong merchantId, string merchantOrderId)
Parameters
Type Name Description
IClientService service
System.UInt64 merchantId
System.String merchantOrderId

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.OrdersGetByMerchantOrderIdResponse>.HttpMethod

MerchantId

The ID of the account that manages the order. This cannot be a multi-client account.

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

MerchantOrderId

The merchant order ID to be looked for.

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

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.OrdersGetByMerchantOrderIdResponse>.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.OrdersGetByMerchantOrderIdResponse>.RestPath

Methods

InitParameters()

Initializes Getbymerchantorderid parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top