Interface SmsMatchOptions

Optional filter for matching SMS based on fields. For instance filter results to only include emails whose BODY value does CONTAIN given match value. An example payload would be { matches: [{ field: 'BODY', should: 'CONTAIN', value: 'Welcome' }] }.

Export

Interface

SmsMatchOptions

Hierarchy

  • SmsMatchOptions

Properties

Properties

Memberof

SmsMatchOptions

matches?: SmsMatchOption[]

Zero or more match options such as { field: 'BODY', should: 'CONTAIN', value: 'Welcome' }. Options are additive so if one does not match the SMS is excluded from results

Memberof

SmsMatchOptions