account.getAccountTTL
Get days to live of account
func (c *Client) AccountGetAccountTTL(ctx context.Context) (*AccountDaysTTL, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.AccountGetAccountTTL(ctx)
if err != nil {
return err
}
_ = res // *AccountDaysTTL
return nil
})
Parameters
This method takes no parameters.
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
account.getAccountTTL#8fc711d