BuyerIdentityInput
Input for buyer identity information. This input type is used to provide buyer details in GraphQL mutations and queries.
Input Definition
input BuyerIdentityInput {
email: String
phone: String
countryCode: String
}Fields
Example
mutation {
someMutation(input: {
email: "buyer@example.com"
phone: "+1-555-123-4567"
countryCode: "US"
}) {
success
}
}Related Types
No related types specified.