Show / Hide Table of Contents

Class OrderreturnsResource.LabelsResource

The "labels" collection of methods.

Inheritance
System.Object
OrderreturnsResource.LabelsResource
Inherited Members
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 LabelsResource

Constructors

LabelsResource(IClientService)

Constructs a new resource.

Declaration
public LabelsResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

Create(ReturnShippingLabel, Int64, String)

Links a return shipping label to a return id. You can only create one return label per return id. Since the label is sent to the buyer, the linked return label cannot be updated or deleted. If you try to create multiple return shipping labels for a single return id, every create request except the first will fail.

Declaration
public virtual OrderreturnsResource.LabelsResource.CreateRequest Create(ReturnShippingLabel body, long merchantId, string returnId)
Parameters
Type Name Description
ReturnShippingLabel body

The body of the request.

System.Int64 merchantId

Required. The merchant the Return Shipping Label belongs to.

System.String returnId

Required. Provide the Google-generated merchant order return ID.

Returns
Type Description
OrderreturnsResource.LabelsResource.CreateRequest
In This Article
Back to top