Sha256: 727897638004574d0fe9045cd841a8ac2f9ff058b94958ef78a1d7aaa3b4f2d8

Contents?: true

Size: 713 Bytes

Versions: 1

Compression:

Stored size: 713 Bytes

Contents

@namespace("Switchboard")

protocol License {

  /** The main class for this protocol */
  record License {
    /** The primary key */
    int id;

    /** name */
    string authority_name;
    string state;
    string status;
    string license_number;
    
    /** License's status **/
    string status_type;
    
    /** seconds from epoch since the license was issued **/
    int license_date;

    /** primary key of the Lawyer object for this license */
    int lawyer_id;
    
    /** seconds from epoch when license was last updated */
    int last_updated;

  }

  /** Look up many licenses in bulk */
  array<License> index();

  /** Look up a single license by id */
  array<License> show(int id);

}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
switchboard-contract-1.9.5 contracts/verify/source/license.avdl