/**
 * Interface to construct and retrieve SCRT data.
 *
 * @export
 * @interface IScrtData
 */
export interface IScrtData {
    /**
     * The feature name associated with your REST client.
     * Maximum length is 48 bytes.
     */
    featureName: string;
    /**
     * Product ID for the REST service to which your client communicates.
     * Maximum length is 8 bytes.
     * This property is not required if your REST service sets its own
     * productId in its application.yaml.
     */
    productId?: string;
    /**
     * Product version for the REST service to which your client communicates.
     * Maximum length is 8 bytes, 2 bytes for each of the three segments,
     * version.release.modLevel (vv.rr.mm). Each segment must be numeric.
     * This property is not required if your REST service sets its own
     * productVersion in its application.yaml.
     */
    productVersion?: string;
}
//# sourceMappingURL=IScrtData.d.ts.map