/** * * DTO returned upon successful registration of a data owner, containing the credentials needed for * initial login. * / */ export declare class DataOwnerRegistrationSuccess { /** * * The login identifier of the newly registered user. */ userLogin: string; /** * * The unique identifier of the newly created user. */ userId: string; /** * * The authentication token for the newly registered user. */ token: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): DataOwnerRegistrationSuccess; }