AppWithToken creates an application with a token and returns a message builder.
(id uint, token string)
| 78 | |
| 79 | // AppWithToken creates an application with a token and returns a message builder. |
| 80 | func (ab *AppClientBuilder) AppWithToken(id uint, token string) *MessageBuilder { |
| 81 | return ab.appWithToken(id, token, false) |
| 82 | } |
| 83 | |
| 84 | // InternalAppWithToken creates an internal application with a token and returns a message builder. |
| 85 | func (ab *AppClientBuilder) InternalAppWithToken(id uint, token string) *MessageBuilder { |