London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface IReturnOrderForm

NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version.

Information about a return order form.

Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 13.30.0
Syntax
public interface IReturnOrderForm : IOrderForm, IExtendedProperties

Properties

ExchangeOrderGroupId

Gets or sets the related this RMA request Exchange order identity

Declaration
int? ExchangeOrderGroupId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

OriginalOrderFormId

Gets the Parent OrderForm identity for RMA request

Declaration
int? OriginalOrderFormId { get; }
Property Value
Type Description
System.Nullable<System.Int32>

ReturnAuthCode

Gets the RMA auth code. Using for procedure RMA authentication.

Declaration
string ReturnAuthCode { get; }
Property Value
Type Description
System.String

ReturnComment

Gets or sets the RMA comment.

Declaration
string ReturnComment { get; set; }
Property Value
Type Description
System.String

ReturnType

Gets the Return Type. For example can be "Refund", "Exchange" etc.

Declaration
string ReturnType { get; }
Property Value
Type Description
System.String

RMANumber

Gets the RMA number.

Declaration
string RMANumber { get; }
Property Value
Type Description
System.String

Status

Gets or sets the return status.

Declaration
ReturnFormStatus Status { get; set; }
Property Value
Type Description
ReturnFormStatus

Extension Methods