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[];
}
- 
Extends: VendureEntity
- 
Implements: SoftDeletable,HasCustomFields