UNPKG

@shipengine/connect-carrier-api

Version:

This is the typescript/javascript definitions for carrier api

9 lines (7 loc) 337 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 class GetServicePointResponse extends BaseResponse { /** @description The resulting service point */ service_point!: ServicePoint; }