Documentation ¶
Overview ¶
Package service_order_status contains order management functionality on security
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetOpts ¶
type GetOpts struct { TenantID string `q:"tenant_id"` Locale string `q:"locale"` SoID string `q:"soid"` }
GetOpts represents result of order progress API response.
func (GetOpts) ToServiceOrderQuery ¶
ToServiceOrderQuery formats a GetOpts into a query string.
type GetOptsBuilder ¶
GetOptsBuilder allows extensions to add additional parameters to the order progress API request
type GetResult ¶
type GetResult struct {
// contains filtered or unexported fields
}
GetResult represents the result of a get operation. Call its Extract method to interpret it as an Order.
func Get ¶
func Get(client *eclcloud.ServiceClient, deviceType string, opts GetOptsBuilder) (r GetResult)
Get retrieves details of an order progress, by SoId.
func (GetResult) Extract ¶
func (r GetResult) Extract() (*OrderProgress, error)
Extract is a function that accepts a result and extracts an Order Progress resource.
func (GetResult) ExtractInto ¶
func (r GetResult) ExtractInto(v interface{}) error
Extract interprets any commonResult as an Order Progress, if possible.
Click to show internal directories.
Click to hide internal directories.