getAccountHistory method

Future<XRPCResponse<HostingGetAccountHistoryOutput>> getAccountHistory({
  1. required String did,
  2. List<HostingGetAccountHistoryEvents>? events,
  3. String? cursor,
  4. int? limit,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

Get account history, e.g. log of updated email addresses or other identity information.

Implementation

Future<XRPCResponse<HostingGetAccountHistoryOutput>> getAccountHistory({
  required String did,
  List<HostingGetAccountHistoryEvents>? events,
  String? cursor,
  int? limit,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneHostingGetAccountHistory(
  did: did,
  events: events,
  cursor: cursor,
  limit: limit,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);