UNPKG

742 BTypeScriptView Raw
1import type { 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 related_component?: string;
24}
25export interface ResponseMetadata {
26 messages?: string[];
27}
28//# sourceMappingURL=AppsManifestCreateResponse.d.ts.map
\No newline at end of file