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 }) @Column({ type: Date, nullable: true })
    deletedAt: Date | null;
  @Column() @Column() name: string;
  @Column(type => CustomSellerFields) @Column(type => CustomSellerFields)
    customFields: CustomSellerFields;
}

Extends

Implements

Members

constructor

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

deletedAt

property
type:
Date | null

name

property
type:
string

customFields

property
type:
CustomSellerFields