aes70
Version:
A controller library for the AES70 protocol.
45 lines (39 loc) • 1 kB
TypeScript
/*
* This file has been generated.
*/
import {
IOcaObjectIdentification,
OcaObjectIdentification,
} from './OcaObjectIdentification';
export declare interface IOcaBlockMember {
/**
* Object identification of a block member.
* @type OcaObjectIdentification
*/
MemberObjectIdentification: IOcaObjectIdentification;
/**
* Object number of a the block that contains the member.
* @type number
*/
ContainerObjectNumber: number;
}
export declare class OcaBlockMember implements IOcaBlockMember {
/**
* Describes an object that is a member of a block.
* @class OcaBlockMember
*/
constructor(
MemberObjectIdentification: OcaObjectIdentification,
ContainerObjectNumber: number
);
/**
* Object identification of a block member.
* @type OcaObjectIdentification
*/
MemberObjectIdentification: OcaObjectIdentification;
/**
* Object number of a the block that contains the member.
* @type number
*/
ContainerObjectNumber: number;
}