# BuyerIdentityInput Input for buyer identity information. Use this type to provide structured buyer details in mutations and queries. ## Input Definition ```graphql input BuyerIdentityInput { email: String phone: String countryCode: String } ``` ## Fields | Field | Type | Required | Description | |-------|------|----------|-------------| | email | String | No | The email address of the buyer | | phone | String | No | The phone number of the buyer | | countryCode | String | No | The country code for the buyer (ISO 3166-1 alpha-2) | ## Example ```graphql mutation { someMutation(input: { email: "buyer@example.com" phone: "+14155552671" countryCode: "US" }) { success } } ``` ## Related Types No related types documented.