Skip to main content

Seller

Seller

A Seller represents the person or organization who is selling the goods on a given Channel. By default, a single-channel Vendure installation will have a single default Seller.

Signature
class Seller extends VendureEntity implements SoftDeletable, HasCustomFields {
constructor(input?: DeepPartial<Seller>)
@Column({ type: Date, nullable: true })
deletedAt: Date | null;
@Column() name: string;
@Column(type => CustomSellerFields)
customFields: CustomSellerFields;
@OneToMany(type => Channel, channel => channel.seller)
channels: Channel[];
}

constructor

method
(input?: DeepPartial<Seller>) => Seller

deletedAt

property
Date | null

name

property
string

customFields

property
CustomSellerFields

channels

property