PrintifyShopModel constructor

PrintifyShopModel({
  1. int? id,
  2. String? title,
  3. String? sales_channel,
})

This resource could be used, to get all created products for your point of sale.

Implementation

PrintifyShopModel({
  /// A unique int identifier for the shop. Each id is unique across the Printify system.
  this.id,

  /// The name of the shop.
  this.title,

  /// The name of the associated sales channel. If none are connected it defaults to "disconnected".
  this.sales_channel,
});