@agravity/private
Version:
The Agravity GlobalDAM API which allowes authenticated user to access the Agravity GlobalDAM Backend
78 lines (76 loc) • 2.36 kB
text/typescript
/**
* Agravity OpenAPI Documentation - Private Functions
*
* Contact: office@agravity.io
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface AssetBlob {
blob_type?: AssetBlob.BlobTypeEnum;
name?: string | null;
container?: string | null;
size?: number | null;
extension?: string | null;
content_type?: string | null;
md5?: string | null;
add_data?: { [key: string]: object } | null;
width?: number | null;
height?: number | null;
maxwidthheight?: number | null;
quality?: number | null;
orientation?: AssetBlob.OrientationEnum | null;
colorspace?: string | null;
profile?: string | null;
transparency?: boolean | null;
mode?: string | null;
target?: string | null;
filter?: string | null;
dpi_x?: number | null;
dpi_y?: number | null;
perhash?: string | null;
dominantcolor?: string | null;
depth?: number | null;
animated?: boolean | null;
duration?: number | null;
videocodec?: string | null;
videobitrate?: number | null;
fps?: number | null;
colormode?: string | null;
audiocodec?: string | null;
audiosamplerate?: string | null;
audiochanneloutput?: string | null;
audiobitrate?: number | null;
author?: string | null;
title?: string | null;
language?: string | null;
wordcount?: number | null;
pages?: number | null;
encoding_name?: string | null;
encoding_code?: string | null;
url?: string | null;
size_readable?: string | null;
downloadable?: boolean | null;
expires?: string | null;
uploaded_date?: string | null;
uploaded_by?: string | null;
}
export namespace AssetBlob {
export type BlobTypeEnum = 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'TEXT' | 'OTHER';
export const BlobTypeEnum = {
Unknown: 'UNKNOWN' as BlobTypeEnum,
Image: 'IMAGE' as BlobTypeEnum,
Video: 'VIDEO' as BlobTypeEnum,
Audio: 'AUDIO' as BlobTypeEnum,
Document: 'DOCUMENT' as BlobTypeEnum,
Text: 'TEXT' as BlobTypeEnum,
Other: 'OTHER' as BlobTypeEnum
};
export type OrientationEnum = 'PORTRAIT' | 'LANDSCAPE' | 'SQUARE';
export const OrientationEnum = {
Portrait: 'PORTRAIT' as OrientationEnum,
Landscape: 'LANDSCAPE' as OrientationEnum,
Square: 'SQUARE' as OrientationEnum
};
}