| GET | /{Brand}/scanstarted |
|---|
export enum Brand
{
Desktop = 'Desktop',
Hp = 'Hp',
Kyocera = 'Kyocera',
NeaScan = 'NeaScan',
Samsung = 'Samsung',
FujiXerox = 'FujiXerox',
Ta = 'Ta',
Utax = 'Utax',
Epson = 'Epson',
ScanFront400 = 'ScanFront400',
Sharp = 'Sharp',
Ricoh = 'Ricoh',
FujiFilm = 'FujiFilm',
Brother = 'Brother',
}
export class DtoBase
{
public Brand: Brand;
public constructor(init?: Partial<DtoBase>) { (Object as any).assign(this, init); }
}
export class RequestBase extends DtoBase
{
public constructor(init?: Partial<RequestBase>) { super(init); (Object as any).assign(this, init); }
}
export class GetScanStarted extends RequestBase
{
public constructor(init?: Partial<GetScanStarted>) { super(init); (Object as any).assign(this, init); }
}
export class ResponseBase extends DtoBase
{
public SelectedUiLanguage: string;
public svSession: string;
public Title: string;
public PageTip: string;
public NewBrowser: boolean;
public ScanFront400TA: boolean;
public ScanFront400UTAX: boolean;
public constructor(init?: Partial<ResponseBase>) { super(init); (Object as any).assign(this, init); }
}
export class GetScanStartedResponse extends ResponseBase
{
public ScanStarted: boolean;
public constructor(init?: Partial<GetScanStartedResponse>) { super(init); (Object as any).assign(this, init); }
}
TypeScript GetScanStarted DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /{Brand}/scanstarted HTTP/1.1
Host: dmsshow.kyocerasolutions.cz
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ScanStarted: False,
SelectedUiLanguage: String,
svSession: String,
Title: String,
PageTip: String,
NewBrowser: False,
ScanFront400TA: False,
ScanFront400UTAX: False,
Brand: Desktop
}