DownloadableProductSamples
Defines characteristics of a downloadable product.
type DownloadableProductSamples = {
__typename?: 'DownloadableProductSamples'; /** @deprecated This information should not be exposed on frontend. */
id?: Maybe<Scalars['Int']['output']>; /** @deprecated `sample_url` serves to get the downloadable sample */
sample_file?: Maybe<Scalars['String']['output']>; /** @deprecated `sample_url` serves to get the downloadable sample */
sample_type?: Maybe<DownloadableFileTypeEnum>; /** The full URL to the downloadable sample. */
sample_url?: Maybe<Scalars['String']['output']>; /** A number indicating the sort order. */
sort_order?: Maybe<Scalars['Int']['output']>; /** The display name of the sample. */
title?: Maybe<Scalars['String']['output']>;
};