github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/dli/v3/flinkjob/result.go (about)

     1  package flinkjob
     2  
     3  type streamGraphResp struct {
     4  	// Indicates whether the request is successfully executed. Value true indicates that the request is successfully executed.
     5  	IsSuccess bool `json:"is_success"`
     6  	// System prompt. If execution succeeds, the message may be left blank.
     7  	Message string `json:"message"`
     8  	// Error codes.
     9  	ErrorCode string `json:"error_code"`
    10  	// Description of a static stream graph.
    11  	StreamGraph string `json:"stream_graph"`
    12  }