All files / src AuthorizationCode.js

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24      1x 1x                     2x             1x  
/**
 * Dependencies
 */
const {JSONDocument} = require('@trust/json-document')
const {AuthorizationCodeSchema} = require('./schemas')
 
/**
 * AuthorizationCode
 */
class AuthorizationCode extends JSONDocument {
 
  /**
   * schema
   */
  static get schema () {
    return AuthorizationCodeSchema
  }
}
 
/**
 * Export
 */
module.exports = AuthorizationCode