INTERFACE

SalesTrend

A sales trend for a user or organization

link GraphQL Schema definition

  • interface SalesTrend {
  • # Number of album sales
  • album_sales: Float
  • # Asset type associated with the report
  • asset_type: String!
  • # Gross revenue for the month
  • gross_revenue: Float!
  • # Objects Identifier
  • id: ID!
  • # Media type associated with the report
  • media_type: String!
  • # Net revenue for the month
  • net_revenue: Float!
  • # Number of streams
  • streams: Int!
  • # Number of track sales
  • track_sales: Float!
  • }