GiftMessageInput
Contains the text of a gift message, its sender, and recipient
type GiftMessageInput = {
from: Scalars['String']['input']; /** Gift message text */
message: Scalars['String']['input']; /** Recipient name */
to: Scalars['String']['input'];
};