UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

11 lines (10 loc) 460 B
import { type Facade } from '../../facade/facade.js'; import { type UserIdentitySchema } from '../../../../data/schema/model/common/user-identity-schema.js'; export declare class UserIdentity implements Facade<UserIdentitySchema> { readonly encapsulatedObject: UserIdentitySchema; constructor(encapsulatedObject: UserIdentitySchema); get name(): string; set name(name: string); get hostname(): string; set hostname(hostname: string); }