UNPKG

705 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AppsManifestCreateResponse = WebAPICallResult & {
3 app_id?: string;
4 credentials?: Credentials;
5 error?: string;
6 errors?: Error[];
7 needed?: string;
8 oauth_authorize_url?: string;
9 ok?: boolean;
10 provided?: string;
11 response_metadata?: ResponseMetadata;
12};
13export interface Credentials {
14 client_id?: string;
15 client_secret?: string;
16 signing_secret?: string;
17 verification_token?: string;
18}
19export interface Error {
20 code?: string;
21 message?: string;
22 pointer?: string;
23}
24export interface ResponseMetadata {
25 messages?: string[];
26}
27//# sourceMappingURL=AppsManifestCreateResponse.d.ts.map
\No newline at end of file