OrderCustomerInfo
type OrderCustomerInfo = {
__typename?: 'OrderCustomerInfo'; /** First name of the customer */
firstname: Scalars['String']['output']; /** Last name of the customer */
lastname?: Maybe<Scalars['String']['output']>; /** Middle name of the customer */
middlename?: Maybe<Scalars['String']['output']>; /** Prefix of the customer */
prefix?: Maybe<Scalars['String']['output']>; /** Suffix of the customer */
suffix?: Maybe<Scalars['String']['output']>;
};