UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

9 lines (7 loc) 328 B
import { BaseResponse } from './base-response'; import { ServicePoint } from '../models/service-points'; /** @description Basic structure for a response to get service points */ export class GetServicePointsResponse extends BaseResponse { /** @description The resulting service points */ service_points!: ServicePoint[]; }