neet/masto.js

View on GitHub
src/mastodon/entities/v1/identity-proof.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents a proof from an external identity provider.
 * @see https://docs.joinmastodon.org/entities/identityproof/
 */
export interface IdentityProof {
  /** The name of the identity provider. */
  provider: string;
  /** The account owner's username on the identity provider's service. */
  providerUsername: string;
  /** The account owner's profile URL on the identity provider. */
  profileUrl: string;
  /** A link to a statement of identity proof, hosted by the identity provider. */
  proofUrl: string;
  /** The name of the identity provider. */
  updatedAt: string;
}