BuyerIdentityInput
Input for buyer identity information. Use this type to provide structured buyer details in mutations and queries.
Input Definition
input BuyerIdentityInput {
email: String
phone: String
countryCode: String
}Fields
Example
mutation {
someMutation(input: {
email: "buyer@example.com"
phone: "+14155552671"
countryCode: "US"
}) {
success
}
}Related Types
No related types documented.