Table of Contents

Class Fee

Namespace
Dynamicweb.Ecommerce.Orders
Assembly
Dynamicweb.Ecommerce.dll

Represents information about a fee.

[Serializable]
public class Fee
Inheritance
Fee
Inherited Members

Constructors

Fee()

Initializes a new instance of the Fee class.

public Fee()

Properties

Active

Gets or sets value indicating whether fee is active.

public bool Active { get; set; }

Property Value

bool

The is active value.

CountryCode

Gets or sets the country code.

public string CountryCode { get; set; }

Property Value

string

The country code.

CurrencyCode

Gets or sets the order currency code.

public string CurrencyCode { get; set; }

Property Value

string

The order currency code.

FeeType

Gets or sets the FeeType.

public FeeType FeeType { get; set; }

Property Value

FeeType

The type.

Id

Gets or sets the fee ID.

public string Id { get; set; }

Property Value

string

The ID.

Method

Gets or sets the fee method.

public string Method { get; set; }

Property Value

string

The method.

MethodId

Gets or sets the fee method ID.

public string MethodId { get; set; }

Property Value

string

The method ID.

Name

Gets or sets the fee name.

public string Name { get; set; }

Property Value

string

The value amount.

OrderContextId

Gets or sets the order context id.

public string OrderContextId { get; set; }

Property Value

string

The order context id.

OrderPrice

Gets or sets the order price.

public double OrderPrice { get; set; }

Property Value

double

The value amount.

ProductsAndGroupsIds

Gets or sets the fee products and groups ids.

public string ProductsAndGroupsIds { get; set; }

Property Value

string

The products and groups ids.

RegionCode

Gets or sets the region code.

public string RegionCode { get; set; }

Property Value

string

The region code.

ShopId

Gets or sets the fee shop id.

public string ShopId { get; set; }

Property Value

string

The shop id.

UserCustomerNumber

Gets or sets the fee user customer number.

public string UserCustomerNumber { get; set; }

Property Value

string

The user customer number.

UserGroupId

Gets or sets the fee user group id.

public int? UserGroupId { get; set; }

Property Value

int?

The user group id.

UserId

Gets or sets the fee user id.

public int? UserId { get; set; }

Property Value

int?

The user id.

ValidFrom

Gets or sets the fee valid from date.

public DateTime? ValidFrom { get; set; }

Property Value

DateTime?

The valid from date.

ValidTo

Gets or sets the fee valid to date.

public DateTime? ValidTo { get; set; }

Property Value

DateTime?

The valid to date.

ValueAmount

Gets or sets the value amount.

public double ValueAmount { get; set; }

Property Value

double

The value amount.

Volume

Gets or sets the volume.

public double Volume { get; set; }

Property Value

double

The volume.

Weight

Gets or sets the weight.

public double Weight { get; set; }

Property Value

double

The weight.

Zip

Gets or sets the zip code.

public string Zip { get; set; }

Property Value

string

The zip code.

Methods

Clone()

Clones this instance.

public Fee Clone()

Returns

Fee
To top