コード例 #1
0
    def yearly(self):
        """
        Access the yearly

        :returns: twilio.rest.api.v2010.account.usage.record.yearly.YearlyList
        :rtype: twilio.rest.api.v2010.account.usage.record.yearly.YearlyList
        """
        if self._yearly is None:
            self._yearly = YearlyList(self._version, account_sid=self._solution['account_sid'], )
        return self._yearly
コード例 #2
0
 def yearly(self):
     """
     Access the yearly
     
     :returns: YearlyList
     :rtype: YearlyList
     """
     if self._yearly is None:
         self._yearly = YearlyList(
             self._version,
             account_sid=self._solution['account_sid'],
         )
     return self._yearly