@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 418 B
text/typescript
import { BaseRequest } from './base-request';
/** @description Basic structure for a request to get a single service point by id */
export class GetServicePointRequest extends BaseRequest {
/** @description The service point id to get */
service_point_id!: string;
/** @description The two character country code of the service point. The codes are specified by ISO 3166-1 alpha-2 */
country_code!: string;
}