@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
47 lines • 2.48 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaEntryModerationStatus } from './KalturaEntryModerationStatus';
import { KalturaEmailIngestionProfileStatus } from './KalturaEmailIngestionProfileStatus';
import { KalturaObjectBase } from '../kaltura-object-base';
var KalturaEmailIngestionProfile = (function (_super) {
__extends(KalturaEmailIngestionProfile, _super);
function KalturaEmailIngestionProfile(data) {
return _super.call(this, data) || this;
}
KalturaEmailIngestionProfile.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
objectType: { type: 'c', default: 'KalturaEmailIngestionProfile' },
id: { type: 'n', readOnly: true },
name: { type: 's' },
description: { type: 's' },
emailAddress: { type: 's' },
mailboxId: { type: 's' },
partnerId: { type: 'n', readOnly: true },
conversionProfile2Id: { type: 'n' },
moderationStatus: { type: 'en', subTypeConstructor: KalturaEntryModerationStatus, subType: 'KalturaEntryModerationStatus' },
status: { type: 'en', readOnly: true, subTypeConstructor: KalturaEmailIngestionProfileStatus, subType: 'KalturaEmailIngestionProfileStatus' },
createdAt: { type: 's', readOnly: true },
defaultCategory: { type: 's' },
defaultUserId: { type: 's' },
defaultTags: { type: 's' },
defaultAdminTags: { type: 's' },
maxAttachmentSizeKbytes: { type: 'n' },
maxAttachmentsPerMail: { type: 'n' }
});
return result;
};
return KalturaEmailIngestionProfile;
}(KalturaObjectBase));
export { KalturaEmailIngestionProfile };
KalturaTypesFactory.registerType('KalturaEmailIngestionProfile', KalturaEmailIngestionProfile);
//# sourceMappingURL=KalturaEmailIngestionProfile.js.map