test multi line cell
This commit is contained in:
+9
-1
@@ -232,7 +232,15 @@ The following event types may be sent with a message event:
|
||||
| Parameter | Type | Method | Description | Default | Required? |
|
||||
| --------- | ---- | ------ | ----------- | ------- | --------- |
|
||||
| query | string | GET | Search string to match against messages | N/A | NO |
|
||||
| message_type | string | GET | Limit results to message type | N/A<br/>Values:<br/><br/><ul><li>`history`</li><li>`message`</li><li>`attachment`</li><li>`media`</li></ul> | NO |
|
||||
| message_type | string | GET | Limit results to message type | N/A
|
||||
|
||||
Values:
|
||||
|
||||
- `history`
|
||||
- `message`
|
||||
- `attachment`
|
||||
- `media`
|
||||
| NO |
|
||||
|
||||
# Members
|
||||
|
||||
|
||||
+8
-1
@@ -14,7 +14,14 @@
|
||||
| --------- | ---- | ------ | ----------- | ------- | --------- |
|
||||
{foreach $call.parameters as $method => $params}
|
||||
{foreach $params as $param}
|
||||
| {param.name} | {param.type} | {method|toupper} | {param.title} | {if empty($param.default)}N/A{else}{param.default}{/if}{if $param.values}<br/>Values:<br/><br/><ul>{foreach $param.values as $value}<li>`{value}`</li>{/foreach}</ul>{/if} | {if $param.required}YES{else}NO{/if} |
|
||||
| {param.name} | {param.type} | {method|toupper} | {param.title} | {if empty($param.default)}N/A{else}{param.default}{/if}
|
||||
{if $param.values}
|
||||
|
||||
Values:
|
||||
|
||||
{foreach $param.values as $value}- `{value}`
|
||||
{/foreach}
|
||||
{/if} | {if $param.required}YES{else}NO{/if} |
|
||||
{/foreach}
|
||||
{/foreach}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user