getCashtrayAttempts method

  1. @deprecated
Future<CashtrayAttempts> getCashtrayAttempts({
  1. required String id,
})

Implementation

@deprecated
Future<CashtrayAttempts> getCashtrayAttempts({
  required String id,
}) async {
  return await invokeMethod<CashtrayAttempts>(
    (j) => CashtrayAttempts.fromJson(j),
    'getCashtrayAttempts',
    {
      'env': this.env.index,
      'accessToken': this.accessToken,
      'id': id,
    },
  );
}