Money
type Money = BaseMoney & {
__typename?: 'Money';
type: Scalars['String'];
currencyCode: Scalars['Currency'];
centAmount: Scalars['Long']; /** For the `Money` it equals to the default number of fraction digits used with the currency. */
fractionDigits: Scalars['Int'];
};