/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type FlowCreateAddressFromPubKeySecret = { /** * Blockchain account to send from */ account: string; /** * Public key to be used */ publicKey: string; /** * Secret for account. Secret, or signature Id must be present. */ privateKey: string; }