Skip to content

GiftInput

Payload for a gift

Fields

giver_email · String · The email of the giver
giver_name · String · The name of the giver
id · ID · The ID of the gift
message · String · The message assigned to the gift

Used By

Definition

"""
Payload for a gift
"""
input GiftInput {
"""
The email of the giver
"""
giver_email: String
"""
The name of the giver
"""
giver_name: String
"""
The ID of the gift
"""
id: ID
"""
The message assigned to the gift
"""
message: String
}