CustomerAddressRegion
Defines the customer's state or province.
type CustomerAddressRegion = {
__typename?: 'CustomerAddressRegion'; /** The state or province name. */
region?: Maybe<Scalars['String']['output']>; /** The address region code. */
region_code?: Maybe<Scalars['String']['output']>; /** The unique ID for a pre-defined region. */
region_id?: Maybe<Scalars['Int']['output']>;
};