getAccountInviteCodes method
Implementation
Future<core.XRPCResponse<InviteCodes>> getAccountInviteCodes({
bool? includeUsed,
bool? createAvailable,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoServerGetAccountInviteCodes,
headers: headers,
parameters: {
'includeUsed': includeUsed,
'createAvailable': createAvailable,
},
to: InviteCodes.fromJson,
);