makePhoneCall.ts 367 字节
Newer Older
1 2
import { ApiProtocol } from '../type'

fxy060608's avatar
fxy060608 已提交
3 4
export const API_MAKE_PHONE_CALL = 'makePhoneCall'

5 6 7 8 9 10
export const MakePhoneCallProtocol: ApiProtocol = {
  phoneNumber: {
    type: String,
    required: true,
    validator(phoneNumber: string) {
      if (!phoneNumber) {
fxy060608's avatar
fxy060608 已提交
11
        return 'parameter error: parameter.phoneNumber should not be empty String;'
12 13 14 15
      }
    },
  },
}