src/api/webApi/data/distributionFormat.interface.ts
A (DDSS) distrubution can support multiple formats, those formats are represented by this interface.
Methods |
getFormat |
getFormat()
|
Identifier for the format.
Returns :
string
|
getLabel |
getLabel()
|
Display label for the format.
Returns :
string
|
getOriginalFormat |
getOriginalFormat()
|
Identifier for the original format.
Returns :
string
|
getType |
getType()
|
The errr 'type' of the format whether its 'original' or 'converted'.
Returns :
string
|
getUrl |
getUrl()
|
The HREF (link) to access this format from a paticular distribition.
Returns :
string
|
import { Usable } from './usable';
/**
* A (DDSS) distrubution can support multiple formats, those formats are represented by this interface.
*/
export interface DistributionFormat extends Usable {
/**
* Display label for the format.
*/
getLabel(): string;
/**
* Identifier for the format.
*/
getFormat(): string;
/**
* Identifier for the original format.
*/
getOriginalFormat(): string;
/**
* The HREF (link) to access this format from a paticular distribition.
*/
getUrl(): string;
/**
* The errr 'type' of the format whether its 'original' or 'converted'.
*/
getType(): string;
}