UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

8 lines (7 loc) 347 B
import { BaseResponse } from './base-response'; import { ServicePoint } from '../models/service-points'; /** @description Basic structure for a response to get a single service point by id */ export declare class GetServicePointResponse extends BaseResponse { /** @description The resulting service point */ service_point: ServicePoint; }