CartAddressRegion
Contains details about the region in a billing or shipping address.
type CartAddressRegion = {
__typename?: 'CartAddressRegion'; /** The state or province code. */
code?: Maybe<Scalars['String']['output']>; /** The display label for the region. */
label?: Maybe<Scalars['String']['output']>; /** The unique ID for a pre-defined region. */
region_id?: Maybe<Scalars['Int']['output']>;
};