code property

  1. @Column(indexed: true, unique: true, nullable: true)
String? code
getter/setter pairinherited

The authorization code of this token.

This value is non-null if this instance represents an authorization code that hasn't yet been exchanged for a token or if this instance represents a token that has been exchanged for this code. This value is null if this instance represents a token that was not created through the authorization code process.

Implementation

@Column(indexed: true, unique: true, nullable: true)
String? code;