OathMechanism constructor
OathMechanism(])
Creates OathMechanism object with given information.
Implementation
OathMechanism(
String? id,
String? mechanismUID,
String? issuer,
String? accountName,
String? type,
TokenType oathType,
String? algorithm,
String? secret,
int? digits,
int? counter,
int? period,
int? timeAdded,
[Account? account])
: super(id, mechanismUID, issuer, accountName, type, secret, timeAdded,
account) {
this.oathType = oathType;
this.algorithm = algorithm;
this.digits = digits;
this.counter = counter;
this.period = period;
}