/** * `Authentication` for Naver Cloud Platform API * * @name ApiAuthKey * @member accessKey `string` private access key for account * @member secretKey `string` private secret key for account */ export type ApiAuthKey = { accessKey: string; secretKey: string; }; /** * `Authentication` for SMS Service * * @name SMSserviceAuth * @member phone `string` registered phone number for sms service * @member serviceId `string` service id for sms service */ export type SMSserviceAuth = { phone: string; serviceId: string; }; /** * `API Signature` for Naver Cloud Platform Services. * * @name ApiSignature * @member timestamp `string` timestamp * @member signature `string` encrypted signature */ export type ApiSignature = { timestamp: string; signature: string; };