Skip to content

SmsTemplateWarning

Warning about SMS template length and multi-message costs

Fields

estimated_length · Int! · required · Estimated character length after template variable expansion
estimated_message_count · Int! · required · Estimated number of SMS messages that will be sent
message · String! · required · Warning message to display to the user

Used By

Definition

"""
Warning about SMS template length and multi-message costs
"""
type SmsTemplateWarning {
"""
Estimated character length after template variable expansion
"""
estimated_length: Int!
"""
Estimated number of SMS messages that will be sent
"""
estimated_message_count: Int!
"""
Warning message to display to the user
"""
message: String!
}