comAtprotoIdentityGetRecommendedDidCredentials function

Future<XRPCResponse<IdentityGetRecommendedDidCredentialsOutput>> comAtprotoIdentityGetRecommendedDidCredentials({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Describe the credentials that should be included in the DID doc of an account that is migrating to this service.

Implementation

Future<XRPCResponse<IdentityGetRecommendedDidCredentialsOutput>>
comAtprotoIdentityGetRecommendedDidCredentials({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.comAtprotoIdentityGetRecommendedDidCredentials,
  headers: $headers,
  parameters: {...?$unknown},
  to: const IdentityGetRecommendedDidCredentialsOutputConverter().fromJson,
);