You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.6 KiB

2 years ago
  1. # Location
  2. ## Properties
  3. Name | Type | Description | Notes
  4. ------------ | ------------- | ------------- | -------------
  5. **PublicUrl** | Pointer to **interface{}** | | [optional]
  6. **Url** | Pointer to **interface{}** | | [optional]
  7. ## Methods
  8. ### NewLocation
  9. `func NewLocation() *Location`
  10. NewLocation instantiates a new Location object
  11. This constructor will assign default values to properties that have it defined,
  12. and makes sure properties required by API are set, but the set of arguments
  13. will change when the set of required properties is changed
  14. ### NewLocationWithDefaults
  15. `func NewLocationWithDefaults() *Location`
  16. NewLocationWithDefaults instantiates a new Location object
  17. This constructor will only assign default values to properties that have it defined,
  18. but it doesn't guarantee that properties required by API are set
  19. ### GetPublicUrl
  20. `func (o *Location) GetPublicUrl() interface{}`
  21. GetPublicUrl returns the PublicUrl field if non-nil, zero value otherwise.
  22. ### GetPublicUrlOk
  23. `func (o *Location) GetPublicUrlOk() (*interface{}, bool)`
  24. GetPublicUrlOk returns a tuple with the PublicUrl field if it's non-nil, zero value otherwise
  25. and a boolean to check if the value has been set.
  26. ### SetPublicUrl
  27. `func (o *Location) SetPublicUrl(v interface{})`
  28. SetPublicUrl sets PublicUrl field to given value.
  29. ### HasPublicUrl
  30. `func (o *Location) HasPublicUrl() bool`
  31. HasPublicUrl returns a boolean if a field has been set.
  32. ### SetPublicUrlNil
  33. `func (o *Location) SetPublicUrlNil(b bool)`
  34. SetPublicUrlNil sets the value for PublicUrl to be an explicit nil
  35. ### UnsetPublicUrl
  36. `func (o *Location) UnsetPublicUrl()`
  37. UnsetPublicUrl ensures that no value is present for PublicUrl, not even an explicit nil
  38. ### GetUrl
  39. `func (o *Location) GetUrl() interface{}`
  40. GetUrl returns the Url field if non-nil, zero value otherwise.
  41. ### GetUrlOk
  42. `func (o *Location) GetUrlOk() (*interface{}, bool)`
  43. GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise
  44. and a boolean to check if the value has been set.
  45. ### SetUrl
  46. `func (o *Location) SetUrl(v interface{})`
  47. SetUrl sets Url field to given value.
  48. ### HasUrl
  49. `func (o *Location) HasUrl() bool`
  50. HasUrl returns a boolean if a field has been set.
  51. ### SetUrlNil
  52. `func (o *Location) SetUrlNil(b bool)`
  53. SetUrlNil sets the value for Url to be an explicit nil
  54. ### UnsetUrl
  55. `func (o *Location) UnsetUrl()`
  56. UnsetUrl ensures that no value is present for Url, not even an explicit nil
  57. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)