InternalAppWithToken creates an internal application with a token and returns a message builder.
(id uint, token string)
| 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 { |
| 86 | return ab.appWithToken(id, token, true) |
| 87 | } |
| 88 | |
| 89 | func (ab *AppClientBuilder) appWithToken(id uint, token string, internal bool) *MessageBuilder { |
| 90 | ab.newAppWithToken(id, token, internal) |