# BuyerIdentityInput Input for buyer identity information. This input type is used to provide buyer details in GraphQL 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: "+1-555-123-4567" countryCode: "US" }) { success } } ``` ## Related Types No related types specified.