AppWithTokenAndName creates an application with a token and name and returns a message builder.
(id uint, token, name string)
| 109 | |
| 110 | // AppWithTokenAndName creates an application with a token and name and returns a message builder. |
| 111 | func (ab *AppClientBuilder) AppWithTokenAndName(id uint, token, name string) *MessageBuilder { |
| 112 | return ab.appWithTokenAndName(id, token, name, false) |
| 113 | } |
| 114 | |
| 115 | // InternalAppWithTokenAndName creates an internal application with a token and name and returns a message builder. |
| 116 | func (ab *AppClientBuilder) InternalAppWithTokenAndName(id uint, token, name string) *MessageBuilder { |