Sha256: 8f0c8b3c3a6f974c1e467f4675b3a841bae91e03ce036d5aac0df4b1859043ad

Contents?: true

Size: 638 Bytes

Versions: 1

Compression:

Stored size: 638 Bytes

Contents

@namespace("Switchboard")

protocol LawyerAddress {

  /** The main class for this protocol */
  record LawyerAddress {
    /** The LawyerAddress's id */
    int id;

    /** The lawyer's id */
    int lawyer_id;

    /** The first line of the address */
    string line1;

    /** The second line of the address */
    string line2;

    /** The city of the address */
    string city;

    /** The state abbreviation of the address */
    string state_code;

    /** The postal code of the address */
    string postal_code;
  }

  /** Look up many adddresses in bulk */
  array<LawyerAddress> index(int lawyer_id, string lawyer_ids);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
switchboard-contract-1.9.5 contracts/4/source/lawyer_address.avdl