@revxui/api-clients-ts
Version:
swagger client for @revxui/api-clients-ts
32 lines (31 loc) • 1.88 kB
TypeScript
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ApiResponseObjectListCreativeMetaData } from '../model/apiResponseObjectListCreativeMetaData';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
export declare class AppsFlyerControllerService {
protected httpClient: HttpClient;
protected basePath: string;
defaultHeaders: HttpHeaders;
configuration: Configuration;
constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
/**
* @param consumes string[] mime-types
* @return true: consumes contains 'multipart/form-data', false: otherwise
*/
private canConsumeForm;
/**
* API to get the metadata of the creatives
*
* @param ids ids
* @param reqId request id
* @param token Auth Token
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
*/
getCreativeMetaDataUsingGET(ids: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListCreativeMetaData>;
getCreativeMetaDataUsingGET(ids: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListCreativeMetaData>>;
getCreativeMetaDataUsingGET(ids: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListCreativeMetaData>>;
static ɵfac: i0.ɵɵFactoryDeclaration<AppsFlyerControllerService, [null, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<AppsFlyerControllerService>;
}